-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.5 KB
/
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": "cs6905_f17_group4",
"version": "0.0.1",
"private": true,
"scripts": {
"install_packages": "npm install && concurrently \"cd ./client && npm install\" \"cd ./server && npm install\" ",
"prestart": "npm run install_packages",
"start": "concurrently \"npm run build:client:dev\" \"npm run start:backend\" ",
"start:prod": "concurrently \"npm run build:client:prod\" \"npm run start:backend\" ",
"start:backend": "cd ./server && npm start && cd ..",
"start:hmr": "concurrently \"npm run hmr\" \"npm run delay && npm run start:backend\" ",
"start:watch:dev": "concurrently \"npm run build:watch:client:dev\" \"npm run start:backend\" ",
"start:watch:prod": "concurrently \"npm run build:watch:client:prod\" \"npm run start:backend\" ",
"build": "npm run build:client:dev",
"build:client:dev": "cd ./client && npm run build:dev && cd ..",
"build:client:prod": "cd ./client && npm run build:prod && cd ..",
"build:watch:client:dev": "cd ./client && npm run build:watch:dev && cd ..",
"build:watch:client:prod": "cd ./client && npm run build:watch:prod && cd ..",
"delay": "node ./node_modules/npm-delay 5000",
"hmr": "cd ./client && npm run start:hmr && cd ..",
"upload": "cd server && npm run upload",
"upload:dev": "npm run build:client:dev && npm run upload",
"upload:prod": "npm run build:client:prod && npm run upload"
},
"dependencies": {
"concurrently": "^3.5.0",
"npm-delay": "^1.0.4"
},
"engines": {
"node": ">=6.11.1"
}
}