-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.17 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": "week-8-agil",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test nyc --reporter=lcov tape tests/* | tap-spec",
"testdb": "NODE_ENV=test node tests/db.test.js | tap-spec",
"testserver": "NODE_ENV=test node tests/server.test.js | tap-spec",
"dev": "NODE_ENV=test nodemon src/index.js",
"coverage": "NODE_ENV=test codecov",
"start": "node src/index.js",
"dbbuild": "node src/database/db_init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/week-8-AGIL.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/week-8-AGIL/issues"
},
"homepage": "https://github.com/fac18/week-8-AGIL#readme",
"dependencies": {
"dotenv": "^8.2.0",
"env2": "^2.2.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"handlebars": "^4.5.3",
"pg": "^7.15.1",
"qs": "^6.9.1"
},
"directories": {
"test": "tests"
},
"devDependencies": {
"supertest": "^4.0.2",
"nodemon": "^2.0.2",
"nyc": "^14.1.1",
"tap-spec": "^5.0.0",
"tape": "^4.12.0",
"codecov": "^3.6.1"
}
}