forked from sima-qian/SGCgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "sgcgo",
"version": "1.0.0",
"description": "fac week 8 project",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "NODE_ENV=test nyc tape ./test/*.js | tap-spec",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"dev": "nodemon src/index.js",
"build": "node src/database/db_build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dupreesi/sgcGO.git"
},
"author": "michael, eve, armand, simon",
"license": "MIT",
"bugs": {
"url": "https://github.com/dupreesi/sgcGO/issues"
},
"homepage": "https://github.com/dupreesi/sgcGO#readme",
"devDependencies": {
"codecov": "^3.0.4",
"eslint": "^5.4.0",
"eslint-config-node": "^3.0.0",
"eslint-config-prettier": "^3.0.1",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"supertest": "^3.1.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": "^7.4.3",
"pg-promise": "^8.4.6",
"serve-favicon": "^2.5.0"
}
}