-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.29 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": "node-base",
"description": "node.js base app using, express, passport, mongoose",
"version": "0.2.1",
"private": true,
"homepage": "https://github.com/rocco/node-base/",
"repository": {
"type": "git",
"url": "https://github.com/rocco/node-base.git"
},
"author": "Rocco Georgi <rocco@pavingways.com> (https://github.com/rocco/)",
"keywords": [
"nodejs",
"base",
"boilerplate",
"bootstrap",
"express",
"mongoose",
"mongodb",
"example",
"authentication",
"facebook",
"twitter"
],
"main": "./server.js",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=0.10.21"
},
"dependencies": {
"express": "4.x",
"stylus": "0.46.x",
"morgan": "1.x",
"compression": "1.x",
"serve-favicon": "2.x",
"serve-static": "1.x",
"body-parser": "1.x",
"method-override": "1.x",
"cookie-parser": "1.x",
"express-session": "1.x",
"csurf": "1.x",
"errorhandler": "1.x",
"jade": "1.3.x",
"mongoose": "3.6.x",
"connect-mongo": "0.4.x",
"passport": "0.2.x",
"passport-facebook": "1.x",
"passport-twitter": "1.x"
},
"devDependencies": {
"should": "~2.1.1",
"supertest": "~0.8.2",
"grunt": "~0.4.2",
"grunt-mocha-test": "~0.8.1",
"grunt-contrib-jshint": "~0.8.0"
},
"optionalDependencies": {},
"scripts": {
"test": "grunt test"
}
}