-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1003 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
32
33
34
35
{
"name": "vite-react-bp",
"private": false,
"version": "0.0.0",
"type": "module",
"proxy": "http://localhost:1123",
"scripts": {
"dev": "concurrently -c 'auto' 'yarn:client' 'yarn:server'",
"client": "vite",
"build": "vite build",
"preview": "vite preview",
"server": "node ./server/index.js"
},
"dependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"jest": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.12"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"globals": "^15.9.0",
"sass": "^1.77.8",
"sass-embedded": "^1.77.8",
"vite": "^5.4.0"
}
}