-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 992 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 992 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
{
"name": "Coding",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"dev:server": "cd client && npm run build && cd .. && npm start",
"dev:localserver": "cd client && rm -rf dist coding && npm run build && mv dist coding && cd .. && npm start",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"compression": "^1.7.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"moment": "^2.24.0",
"path": "^0.12.7",
"qs": "^6.6.0",
"socket.io": "^2.2.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
}
}