-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 933 Bytes
/
package.json
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
{
"name": "spill",
"version": "1.0.0",
"scripts": {
"client": "cd client && npm run start",
"prod": "concurrently --kill-others-on-fail \"npm run server\" \"serve -s build -l 8082\"",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"build": "react-scripts build"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cross-env": "7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"ini": ">=3.0.1",
"lodash": ">=4.17.21",
"nodemon": ">=2.0.21",
"react": "^18.2.0",
"react-dom": "^18.x.x",
"react-spring": "^9.7.1",
"serve": "^14.2.0",
"sqlite3": "^5.x.x",
"yargs-parser": ">=21.1.1"
},
"devDependencies": {
"concurrently": "^7.6.0"
}
}