This repository has been archived by the owner on Jul 4, 2019. It is now read-only.
forked from eiriklv/simple-express-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "simple-express-boilerplate",
"main": "app.js",
"description": "An express 4.x boilerplate with the essentials",
"version": "0.2.0",
"engines": {
"node": "0.10.x"
},
"dependencies": {
"express": "~4.3.1",
"morgan": "~1.1.1",
"body-parser": "~1.2.2",
"cookie-parser": "~1.1.0",
"express-session": "~1.2.1",
"serve-favicon": "~2.0.0",
"errorhandler": "~1.0.1",
"method-override": "~1.0.2",
"hbs": "~2.6.0",
"socket.io": "~0.9.17",
"socket.io-client": "~0.9.17",
"request": "~2.36.0",
"colors": "~0.6.2",
"async": "~0.9.0",
"debug": "~0.8.1",
"nib": "~1.0.2",
"stylus": "~0.45.1",
"convict": "~0.4.2",
"validator": "~3.12.0",
"superagent": "~0.18.0"
},
"devDependencies": {
"browserify": "~4.1.6",
"vinyl-source-stream": "~0.1.1",
"gulp": "~3.6.2",
"gulp-stylus": "^0.1.0",
"gulp-notify": "~1.3.1",
"gulp-nodemon": "~1.0.3",
"hbsfy": "~1.3.2",
"envify": "^1.2.1"
},
"browserify": {
"transform": [
"hbsfy",
"envify"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "sh dev.sh"
},
"author": "Eirik Vullum <evullum@gmail.com> (http://www.evconsult.no/)",
"license": "MIT"
}