forked from jlmonteagudo/voteExpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 691 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 691 Bytes
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
{
"name": "vote-express",
"description": "A demo app in nodejs illustrating the use of express, jade and mongoose",
"version": "3.0.0",
"private": false,
"author": "jl_monteagudo",
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "latest",
"jade": "latest",
"mongoose": "latest",
"connect-mongo": "latest",
"connect-flash": "latest",
"underscore": "latest",
"gzippo": "latest",
"async": "latest",
"socket.io": "~0.9.14"
},
"devDependencies": {
"supertest": "latest",
"should": "latest",
"mocha": "latest",
"nodemon": "latest"
}
}