-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
27 lines (27 loc) · 1.01 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
{
"name": "crae-simple",
"version": "1.0.0",
"main": "index.js",
"repository": {},
"license": "MIT",
"engines": {
"node": "8.12.0",
"npm": "6.4.1",
"yarn": "1.12.3"
},
"scripts": {
"build": "concurrently \"cd client && yarn build\" \"cd server && yarn build\"",
"clean": "concurrently \"rimraf node_modules yarn.lock package-lock.json\" \"cd client && rimraf node_modules build yarn.lock package-lock.json\" \"cd server && rimraf node_modules build yarn.lock package-lock.json\"",
"heroku-postbuild": "yarn build",
"install": "(cd client && yarn) && (cd server && yarn)",
"start": "concurrently \"cd client && yarn start\" \"cd server && yarn start\"",
"start:prod": "cd server && yarn start:prod",
"local-prod": "yarn clean && yarn install && yarn build && heroku local",
"local": "yarn clean && yarn install && yarn start",
"test": "(cd client && yarn test) && (cd server && yarn test)"
},
"dependencies": {
"concurrently": "^4.1.0",
"rimraf": "^2.6.2"
}
}