forked from ben-bradley/hapi-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "hapi-boilerplate",
"version": "0.0.1",
"description": "A simple boiler plate repo of a Hapi server to make life a little easier",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha -R spec",
"install": "ls -d plugins/* | while read DIR; do cd $DIR; echo \"installing: $DIR\"; npm install; cd ../..; done"
},
"author": "Ben Bradley",
"license": "MIT",
"dependencies": {
"argify": "0.0.2",
"boom": "^2.6.1",
"config": "^1.8.1",
"glob": "^4.3.1",
"good": "^5.1.1",
"good-file": "^4.0.2",
"gulp-browserify": "^0.5.1",
"hapi": "^8.2.0",
"joi": "^5.0.2",
"lout": "^6.1.0"
},
"devDependencies": {
"browserify": "^9.0.3",
"gulp": "^3.8.11",
"gulp-nodemon": "^2.0.2",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.5.1",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.4",
"mocha": "^2.1.0",
"reactify": "^1.1.0",
"should": "^5.0.0",
"supertest": "^0.15.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^2.6.0"
}
}