-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
47
48
49
50
{
"name": "timelapse-api",
"version": "0.1.1",
"description": "Timelapse API",
"main": "app.js",
"engines": {
"node": "6.9.2",
"npm": "3.10.9"
},
"scripts": {
"lint": "eslint src --ignore-path ./.gitignore --ext=.js",
"coveralls": "NODE_ENV=test ./node_modules/.bin/lab -c -l -r lcov | ./node_modules/.bin/coveralls",
"test": "NODE_ENV=test ./node_modules/.bin/lab -l",
"test:debug": "NODE_ENV=test node --inspect --debug-brk ./node_modules/lab/bin/lab -l",
"start": "node app.js",
"start:debug": "NODE_ENV=test node app.js"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"amqplib": "^0.5.1",
"bcryptjs": "^2.4.0",
"bluebird": "^3.4.7",
"boom": "^4.2.0",
"dotenv": "^4.0.0",
"good": "^7.1.0",
"good-console": "^6.2.0",
"good-sentry": "^1.0.3",
"good-squeeze": "^5.0.1",
"hapi": "^16.x.x",
"hapi-auth-jwt2": "^7.2.4",
"hapi-boom-decorators": "^2.2.2",
"hapi-swagger": "^7.6.0",
"inert": "^4.1.0",
"joi": "^10.2.0",
"jsonwebtoken": "^7.2.1",
"kerberos": "^0.0.22",
"mongoose": "^4.7.6",
"shortid": "^2.2.6",
"vision": "^4.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"lab": "^12.0.0"
}
}