-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
30 lines (30 loc) · 976 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
{
"dependencies": {
"auth0-js": "^9.6.1",
"babel-polyfill": "^6.26.0",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"express-http-to-https": "^1.1.4",
"express-promise-router": "^3.0.2",
"express-sslify": "^1.2.0",
"pg": "^7.4.3",
"supervisor": "^0.12.0"
},
"scripts": {
"setup": "./scripts/setup.sh",
"db:init": "./scripts/initDb.js development test",
"db:clean": "./scripts/cleanDb.js",
"test": "NODE_ENV=test mocha ./test --exit",
"client:build": "cd client && yarn build && rm -rf ../server/static/ && mv build/ ../server/static/",
"client:start": "cd client && yarn start",
"start": "node server/index.js",
"start:watch": "supervisor server/index.js",
"heroku-postbuild": "cd client && yarn && yarn build && rm -rf ../server/static/ && mv build/ ../server/static/"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"request": "^2.88.0",
"supertest": "^3.1.0"
}
}