-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.35 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
33
34
35
36
37
{
"name": "humble",
"version": "1.0.0",
"description": "- dan running the UX hype - judith devving the ops - kin mastering the scrum - reggie keeping the quality high",
"main": "server/index.js",
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"heroku-postbuild": "NODE_ENV=production cd client && npm i && npm run build && cd .. && npm i",
"db-init": "NODE_ENV=production cd server && node model/dbInit.js",
"dev:db-init": "NODE_ENV=test cd server && node model/dbInit.js",
"dev:start": "NODE_ENV=test cd server && nodemon index.js",
"dev:build": "NODE_ENV=test cd client && npm run build && cd ../server && nodemon index.js",
"test": "NODE_ENV=test cd client && npm test && cd ../server && npm test",
"test:travis": "NODE_ENV=travis cd server && npm run test:travis",
"coverage": "NODE_ENV=travis cd server && npm run test:travis -- --coverage --watchAll=false && codecov"
},
"engines": {
"node": "12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/humble.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/humble/issues"
},
"homepage": "https://github.com/fac18/humble#readme",
"dependencies": {
"express": "^4.17.1",
"nodemon": "^2.0.2",
"pg": "^7.17.1"
},
"devDependencies": {}
}