-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "sgcgo",
"version": "1.0.0",
"description": "fac week 8 project",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "NODE_ENV=test nodemon src/index.js",
"build": "node src/database/db_build.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sima-qian/SGCgo.git"
},
"author": "michael, eve, armand, simon",
"license": "MIT",
"bugs": {
"url": "https://github.com/sima-qian/SGCgo/issues"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/coverage/**",
"!**/.nyc_output/**",
"!**/.git/**",
"!test/**",
"!src/database/db_build.js",
"!src/database/db_connect.js",
"!src/index.js",
"!public/javascript/main.js"
]
},
"homepage": "https://github.com/sima-qian/SGCgo/#readme",
"devDependencies": {
"codecov": "^3.0.4",
"eslint": "^5.4.0",
"eslint-config-node": "^3.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-jest": "^21.22.0",
"jest": "^23.5.0",
"nodemon": "^1.18.3",
"supertest": "^3.1.0"
},
"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": "^7.4.3",
"pg-promise": "^8.4.6",
"serve-favicon": "^2.5.0"
}
}