-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.12 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
{
"name": "open-careers-portal",
"version": "1.0.0",
"scripts": {
"start": "node server/index.js",
"install:client": "npm install --prefix client",
"install:server": "npm install --prefix server",
"install:all": "npm install && npm install --prefix client && npm install --prefix server",
"test:client": "cd client && npx jest",
"client": "npm start --prefix client",
"server": "npm start --prefix server",
"prod": "NODE_ENV=production REACT_APP_ENV=production npm-run-all -p start:server start:client",
"dev:user": "NODE_ENV=development_user REACT_APP_ENV=development_user npm-run-all -p start:mongo start:server start:client",
"dev:admin": "NODE_ENV=development_admin REACT_APP_ENV=development_admin npm-run-all -p start:mongo start:server start:client",
"start:mongo": "mongod --dbpath ~/data/db --config ~/mongodb.conf",
"start:server": "npm run server",
"start:client": "npm run client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm install --prefix server && npm run build --prefix client"
},
"devDependencies": {
"concurrently": "^7.6.0",
"npm-run-all": "^4.1.5"
}
}