-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "steven-hapijs-starter-kit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chenfanggm/steven-hapijs-starter-kit.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenfanggm/steven-hapijs-starter-kit/issues"
},
"homepage": "https://github.com/chenfanggm/steven-hapijs-starter-kit#readme",
"scripts": {
"dev": "better-npm-run dev",
"start": "better-npm-run start",
"forever": "better-npm-run start",
"test": "better-npm-run test",
"test:watch": "better-npm-run test:watch",
"test:cov": "better-npm-run test:cov",
"cluster": "better-npm-run cluster",
"lint": "eslint --ext .js ."
},
"betterScripts": {
"dev": {
"command": "nodemon bin/start.js",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"start": {
"command": "node bin/start.js",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"test": {
"command": "jest",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
},
"test:watch": {
"command": "jest --watch",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
},
"cluster": {
"command": "node bin/cluster.js",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
}
},
"dependencies": {
"accept-language": "^3.0.18",
"axios": "^0.17.1",
"bluebird": "^3.5.1",
"boom": "^7.1.1",
"debug": "^3.1.0",
"good": "^7.3.0",
"good-console": "^6.4.0",
"good-file": "^6.0.1",
"good-http": "^6.1.3",
"good-squeeze": "^5.0.2",
"good-winston": "^4.0.0",
"handlebars": "^4.0.11",
"hapi": "^16.6.2",
"i18next": "^10.1.0",
"inert": "^4.2.1",
"joi": "^13.0.2",
"lodash": "^4.17.4",
"nes": "^7.0.1",
"rotating-file-stream": "^1.3.4",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"better-npm-run": "^0.1.0",
"jest": "^21.2.1",
"nodemon": "^1.12.1"
}
}