-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "hapi-prototype",
"description": "Hapi Prototype Application",
"homepage": "https://github.com/coding-house-jan2015/hapi-prototype",
"engines": {
"node": "0.12.x"
},
"keywords": [
"gulp",
"jshint",
"jscs",
"server",
"hapi",
"node",
"mongo",
"mongoose"
],
"author": "Chyld Medford <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/coding-house-jan2015/hapi-prototype.git"
},
"version": "1.0.0",
"scripts": {
"start": "node server/index.js",
"localstart": "MONGO_URL=mongodb://localhost/hapi-prototype PORT=3333 nodemon -e js,jade server/index.js",
"clean": "rm -rf node_modules && rm -rf public && npm install && bower install && gulp build",
"postinstall": "bower install && gulp build"
},
"license": "MIT",
"dependencies": {
"good": "^5.1.1",
"good-console": "^4.1.0",
"hapi": "^8.2.0",
"jade": "^1.9.2",
"joi": "^5.1.0",
"lodash": "^3.2.0",
"mongoose": "^3.8.23"
},
"devDependencies": {
"bower": "^1.3.12",
"gulp": "^3.8.10",
"gulp-copy": "0.0.2",
"gulp-jade": "^0.11.0",
"gulp-jshint": "^1.9.2",
"gulp-less": "^3.0.0",
"gulp-watch": "^4.1.1",
"jshint-stylish": "^1.0.0"
}
}