-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.02 KB
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
36
37
38
39
40
{
"dependencies": {
"@react-three/drei": "9.13.2",
"@react-three/fiber": "8.2.2",
"@types/three": "0.143.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"three": "0.143.0",
"better-sqlite3": "^11.10.0",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^20.11.0",
"react-scripts": "5.0.1",
"typescript": "4.7.4",
"nodemon": "^3.0.3",
"concurrently": "^8.2.2"
},
"scripts": {
"start": "concurrently \"npm run server\" \"react-scripts start\"",
"server": "nodemon server/index.js",
"client": "react-scripts start",
"build": "react-scripts build",
"vercel-build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}