-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 933 Bytes
/
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
{
"name": "hapi-mongoose-api-server",
"version": "1.0.0",
"license": "MIT",
"description": "Lean Hapi API Boilerplate",
"main": "server.js",
"scripts": {
"test": "./node_modules/lab/bin/lab -v",
"start": "npm-run-all --parallel lint start:server",
"start:server": "nodemon server.js",
"lint": "eslint . --ext .js"
},
"keywords": [
"hapi",
"mongoose"
],
"dependencies": {
"babel-eslint": "^8.2.1",
"boom": "^4.3.1",
"glue": "^4.1.0",
"good": "^7.2.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"hapi": "^16.4.3",
"hapi-auth-jwt2": "^7.3.0",
"joi": "^13.0.2",
"mongoose": "^4.9.2"
},
"devDependencies": {
"blipp": "^2.3.0",
"code": "^4.1.0",
"eslint": "^4.17.0",
"eslint-plugin-import": "^2.6.1",
"lab": "^14.1.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2"
},
"engines": {
"node": ">=4.0.0"
}
}