-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
{
"name": "baraka",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "NODE_ENV=production node src/index.js",
"dev": "NODE_ENV=development nodemon src/index.js",
"test": "NODE_ENV=test node test/logic.test.js | tap-spec && NODE_ENV=test node test/routes.test.js | tap-spec && NODE_ENV=test node test/db.test.js | tap-spec",
"killrun": "npm run killport && npm run dev",
"killport": "fuser -k 5000/tcp",
"coverage": "nyc npm run test",
"cover": "nyc --reporter=lcov npm t"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"codecov": "^3.5.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"compression": "^1.7.4",
"env2": "^2.2.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"pg": "^7.12.1"
}
}