-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
{
"name": "hapi-starter",
"version": "1.0.0",
"description": "A Hapi Starter RDMS with Sequelize ORM",
"main": "server.js",
"scripts": {
"test": "lab -cLv -t 90",
"test-cov-html": "lab -r html -o test/coverage/coverage.html",
"dev": "nodemon server.js",
"codecov": "istanbul cover ./node_modules/lab/bin/lab --report lcovonly -- -l"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejs-indonesia/hapi-starter.git"
},
"keywords": [
"hapijs",
"nodejs",
"boilerplate",
"sequelize"
],
"author": "Node JS Indonesia <https://github.com/nodejs-indonesia>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodejs-indonesia/hapi-starter/issues"
},
"homepage": "https://github.com/nodejs-indonesia/hapi-starter#readme",
"dependencies": {
"bcrypt": "^1.0.3",
"boom": "^7.1.1",
"config": "^1.29.0",
"dotenv": "^4.0.0",
"events": "^1.1.1",
"good": "^7.3.0",
"good-console": "^6.4.0",
"good-file": "^6.0.1",
"good-squeeze": "^5.0.2",
"hapi": "^16.6.2",
"hapi-auth-jwt2": "^7.3.0",
"joi": "^13.0.2",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"mysql": "^2.15.0",
"require-directory": "^2.1.1",
"rotating-file-stream": "^1.3.4",
"sequelize": "3.31.1",
"socketio": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-config-hapi": "^11.1.0",
"eslint-plugin-hapi": "^4.1.0",
"hapi-no-var": "^1.0.1",
"istanbul": "^0.4.5",
"lab": "^14.3.1",
"nodemon": "^1.14.7",
"sqlite3": "^3.1.13"
}
}