-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "race-to-zero",
"version": "1.0.0",
"description": "Mobile web app to help people reduce waste in a fun motivational way",
"main": "src/index.js",
"directories": {
"test": "test"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/public/**",
"!test/**",
"!coverage/**",
"!node_modules/**",
"!**/index.js",
"!src/model/topics.js",
"!db/db_build.js"
]
},
"scripts": {
"start": "node src/index.js",
"test": "jest --detectOpenHandles",
"dev": "nodemon src/index.js",
"build": "node db/db_build.js",
"report-coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-14/race-to-zero.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-14/race-to-zero/issues"
},
"homepage": "https://github.com/fac-14/race-to-zero#readme",
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.5.0",
"eslint-config-node": "^3.0.0",
"eslint-config-prettier": "^3.0.1",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"nyc": "^13.0.1",
"supertest": "^3.3.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"env2": "^2.2.2",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-validator": "^5.3.0",
"pg-promise": "^8.4.6",
"serve-favicon": "^2.5.0"
}
}