-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 881 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 881 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": "server",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --experimental-json-modules ./index.js",
"start": "node --experimental-json-modules ./index.js",
"client-install": "cd ./client && npm i --force",
"client-build": "cd ./client && npm run build",
"heroku-postbuild": "npm run client-install && npm run client-build",
"local-postbuild": "npm run client-install && npm run client-build && npm run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.1.2",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"lodash": "^4.17.21",
"mongoose": "^6.6.5",
"nodemon": "^2.0.20",
"piston-client": "^1.0.2",
"redis": "^4.3.1",
"socket.io": "^4.5.2"
}
}