-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "week8-pbok",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node tests/database.tests.js",
"testroutes": "node ./tests/routes.test.js | tap-spec",
"start": "node src/index.js",
"devstart": "nodemon src/index.js",
"alltest": "tape tests/* | tap-spec",
"testdb": "node tests/database.test.js | tap-spec",
"coverage": "nyc tape ./tests/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/week8-pbok.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/week8-pbok/issues"
},
"homepage": "https://github.com/fac18/week8-pbok#readme",
"devDependencies": {
"codecov": "^3.6.1",
"nock": "^11.7.0",
"nodemon": "^2.0.2",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.12.0"
},
"dependencies": {
"env2": "^2.2.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"pg": "^7.15.0",
"serve-favicon": "^2.5.0"
}
}