-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "fashion-shop",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:full": "concurrently \"npm run dev\" \"node backend/server.js\"",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"framer-motion": "^11.0.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"jsonwebtoken": "^9.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0"
},
"devDependencies": {
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.1.0"
}
}