forked from UW-FLOM/flom-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (21 loc) · 985 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
{
"scripts": {
"setup": "yarn install && cd client && yarn install && cd ../server && yarn install",
"db:setup": "cd server && yarn db:setup && cd ..",
"db:start": "pg_ctl -D /usr/local/var/postgres start",
"db:stop": "pg_ctl -D /usr/local/var/postgres stop",
"dev:start:client": "cd client && yarn install && yarn start",
"dev:start:server": "cd server && yarn install && yarn start:dev",
"dev:start": "yarn db:start && concurrently –kill-others-on-fail \"yarn dev:start:server\" \"yarn dev:start:client\"",
"prod:build": "cd client && yarn install && yarn build && cd ..",
"prod:start": "cd server && yarn start:prod",
"docker:build:survey": "./bin/docker_build.sh",
"docker:build:all": "yarn prod:build && yarn docker:build:survey",
"docker:start": "./bin/docker_start.sh",
"docker:kill:all": "docker kill $(docker ps -q)"
},
"dependencies": {
"concurrently": "^3.6.0"
},
"license": "UNLICENSED"
}