-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 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
38
39
40
41
42
43
44
45
46
{
"name": "week8-denk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test tape src/tests/*.test.js | tap-spec",
"test_db": "NODE_ENV=test node src/tests/db.test.js | tap-spec",
"test_server": "NODE_ENV=test node src/tests/server.test.js | tap-spec",
"test_logic": "NODE_ENV=test node src/tests/logic.test.js | tap-spec",
"start:watch": "NODE_ENV=test nodemon src/server.js",
"test_db_init" : "NODE_ENV=test node src/model/db_init.js",
"nyc" : "NODE_ENV=test nyc tape src/tests/*.test.js | tap-spec",
"start": "node src/server.js",
"db_init": "node src/model/db_init.js",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/week8-denk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/week8-denk/issues"
},
"homepage": "https://github.com/fac18/week8-denk#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.0",
"pg": "^7.15.1",
"serve-favicon": "^2.5.0",
"url": "^0.11.0",
"env2": "^2.2.2"
},
"devDependencies": {
"codecov": "^3.6.5",
"nodemon": "^2.0.2",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.12.0"
}
}