-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 KB
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
{
"name": "node-boot",
"description": "node-boot is a starting point for developing a web application based on a proven node.js stack",
"author": "Chris Bumgardner <cbumgard@gmail.com>",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/cbumgard/node-boot"
},
"homepage": "http://node-boot.herokuapp.com/",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/cbumgard/node-boot/blob/master/LICENSE"
}
],
"scripts": {
"start": "node app.js"
},
"dependencies": {
"express": ">= 0.0.1",
"jade": ">= 0.0.1",
"passport": ">= 0.1.x",
"passport-facebook": ">= 0.1.x",
"passport-twitter": ">= 0.1.x",
"passport-github": ">= 0.1.3",
"connect-flash": ">= 0.1.x",
"mongoose": ">= 3.4.0",
"async": ">= 0.1.x",
"underscore": ">= 1.4.2",
"winston": ">= 0.6.2",
"winston-mongodb": ">= 0.4.0",
"connect-redis": ">= 1.4.5",
"cluster": ">= 0.7.7",
"nodemailer": ">= 0.3.35",
"connect": ">= 2.7.0",
"socket.io": ">= 0.9.10",
"session.socket.io": ">= 0.1.3",
"markdown": "0.4.0"
},
"devDependencies": {
"grunt": "0.4.1",
"grunt-contrib-jshint": "0.1.1",
"grunt-contrib-concat": "0.2.0",
"grunt-contrib-copy": "0.4.1",
"grunt-contrib-nodeunit": "0.1.2",
"grunt-bower-task": "0.2.0",
"grunt-yui-compressor": "0.2.2",
"grunt-contrib-watch": "0.3.1",
"grunt-contrib-clean": "0.4.1"
},
"engines": {
"node": "0.8.x",
"npm": "1.1.x"
}
}