forked from madhums/node-express-mongoose-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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
64
65
66
67
68
{
"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 <[email protected]> (http://madhums.github.com)",
"repository": {
"type": "git",
"url": "https://github.com/madhums/node-express-mongoose-demo.git"
},
"license": "MIT",
"engines": {
"node": ">=6.x"
},
"scripts": {
"start": "./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/nodemon server.js",
"debug": "./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/nodemon --debug server.js",
"test": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/babel-tape-runner test/test-*.js"
},
"dependencies": {
"body-parser": "~1.15.1",
"co": "~4.6.0",
"compression": "~1.6.2",
"connect-flash": "~0.1.1",
"connect-mongo": "~1.3.1",
"cookie-parser": "~1.4.0",
"cookie-session": "~1.2.0",
"cors": "~2.8.0",
"cross-env": "~3.1.1",
"csurf": "~1.9.0",
"dotenv": "~2.0.0",
"express": "~4.14.0",
"express-session": "~1.14.0",
"forever": "~0.15.1",
"jade": "~1.11.0",
"method-override": "~2.3.5",
"mongoose": "~4.7.2",
"morgan": "~1.7.0",
"multer": "~1.2.0",
"notifier": "~0.1.7",
"only": "0.0.2",
"passport": "~0.3.2",
"passport-facebook": "~2.1.0",
"passport-github": "~1.1.0",
"passport-google-oauth": "~1.0.0",
"passport-linkedin": "~1.0.0",
"passport-local": "~1.0.0",
"passport-twitter": "~1.0.3",
"view-helpers": "~0.1.5",
"winston": "~2.3.0"
},
"devDependencies": {
"babel-eslint": "~7.1.0",
"babel-preset-stage-0": "~6.16.0",
"babel-tape-runner": "~2.0.1",
"eslint": "~3.12.0",
"nodemon": "1.11.0",
"supertest": "*",
"tape": "~4.6.0"
}
}