This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
60
61
62
63
{
"name": "nodejs-seed",
"version": "1.0.0",
"description": "NodeJS blank startup project",
"main": "index.js",
"engines": {
"npm": "^5.3.0",
"node": "^6.11.0"
},
"scripts": {
"precommit": "lint-staged",
"start": "nodemon -e js,json,sql index.js",
"start-no-fix": "nodemon -e js,json,sql index.js --no-fixtures",
"test": "istanbul cover _mocha test/**/*.js",
"debug": "node --inspect index.js"
},
"lint-staged": {
"{config,lib,test,utils}/**/*.{js,json}": [
"prettier-eslint --single-quote --write --print-width 100 --trailing-comma es5",
"git add"
]
},
"keywords": [
"hapi",
"node"
],
"author": "Nargonath",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.2",
"boom": "^5.2.0",
"chalk": "^2.0.1",
"clui": "^0.3.6",
"confidence": "^3.0.2",
"good": "^7.2.0",
"good-console": "^6.4.0",
"good-file": "^6.0.1",
"good-squeeze": "^5.0.2",
"hapi": "^16.4.3",
"hapi-auth-jwt2": "^7.3.0",
"hapi-sequelize": "^3.0.4",
"hoek": "^4.2.0",
"inert": "^4.2.1",
"joi": "^10.6.0",
"jsonwebtoken": "^7.4.1",
"ora": "^1.3.0",
"pg": "^6.4.0",
"q": "^1.5.0",
"sequelize": "^3.30.0",
"wavy": "^1.0.4",
"yargs-parser": "^7.0.0"
},
"devDependencies": {
"eslint": "^4.3.0",
"husky": "^0.14.3",
"istanbul": "^0.4.2",
"lint-staged": "^4.0.1",
"mocha": "^3.4.2",
"nodemon": "^1.9.1",
"prettier-eslint-cli": "^4.1.1",
"sinon": "^2.3.4"
}
}