-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "nodejs-express-mongoose-demo",
"description": "A demo app illustrating the usage of express, mongoose, passportjs, swig and other modules in nodejs",
"keywords": [
"express",
"mongoose",
"mongodb",
"passport",
"demo"
],
"version": "4.0.0",
"private": false,
"author": "Madhusudhan Srinivasa <madhums8@gmail.com> (http://madhums.github.com)",
"repository": {
"type": "git",
"url": "https://github.com/madhums/node-express-mongoose-demo.git"
},
"engines": {
"node": "0.12.6"
},
"scripts": {
"start": "NODE_PATH=./config:./app/controllers NODE_ENV=development ./node_modules/.bin/nodemon server.js",
"test": "NODE_PATH=./config:./app/controllers NODE_ENV=test ./node_modules/.bin/mocha --reporter spec --timeout 10000 test/test-*.js"
},
"dependencies": {
"async": "1.3.0",
"body-parser": "1.13.2",
"compression": "1.5.1",
"connect-flash": "0.1.1",
"connect-mongo": "0.8.1",
"cookie-parser": "1.3.5",
"cookie-session": "1.2.0",
"csurf": "1.8.3",
"express": "4.13.1",
"express-session": "1.11.3",
"forever": "0.14.2",
"imager": "0.2.7",
"method-override": "2.3.3",
"mongoose": "4.0.6",
"morgan": "1.6.1",
"multer": "0.1.8",
"notifier": "0.1.7",
"passport": "0.2.2",
"passport-facebook": "2.0.0",
"passport-github": "0.1.5",
"passport-google-oauth": "0.2.0",
"passport-linkedin": "0.1.3",
"passport-local": "1.0.0",
"passport-twitter": "1.0.3",
"swig": "1.4.2",
"view-helpers": "0.1.5",
"winston": "1.0.1"
},
"devDependencies": {
"supertest": "1.0.1",
"should": "7.0.1",
"mocha": "2.2.5",
"nodemon": "1.3.7"
}
}