-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 745 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
{
"name": "server",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "concurrently \"nodemon app.js\" \"npm run client\"",
"client": "cd client && npm start",
"production": "concurrently \"npm run server\" \"npm run serve\"",
"server": "node app.js",
"serve": "cd client && serve -s build -p 3000"
},
"dependencies": {
"archiver": "^2.1.1",
"axios": "^0.18.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"debug": "~0.7.4",
"express": "^4.16.3",
"express-mongo-db": "^2.0.4",
"mongodb": "^3.0.10",
"morgan": "^1.9.1",
"nodemon": "^1.18.3",
"request": "^2.85.0"
},
"devDependencies": {
"concurrently": "^3.5.1"
}
}