-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 838 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
33
{
"name": "server",
"version": "1.0.0",
"dependencies": {
"babel-core": "^6.26.3",
"parcel": "^1.10.3",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"lowdb": "^1.0.0",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"nodemon": "^1.18.6",
"path": "^0.12.7",
"prettier": "^1.15.2",
"react-transition-group": "^2.5.0",
"shortid": "^2.2.14",
"ws": "^6.1.2"
},
"scripts": {
"server": "nodemon --ignore data.json ./index.js",
"client": "cd client && npm run parcel:dev",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"production": "cd client && npm run parcel:build && cd ../ && npm run server"
},
"nodemonConfig": {
"ignore": [
"./data.json"
]
}
}