forked from diki/nodejs-passport-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (35 loc) · 1.1 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
{
"name": "NodeJS-Passort-BoilerPlate",
"description": "A demo app in nodejs illustrating the use of passport in express, swig and mongoose environment.Many thanks to https://github.com/madhums/node-express-mongoose-demo since this project is stripped and modified version",
"version": "1.0.0",
"private": false,
"author": "Mustafa Dikici <[email protected]>, Madhusudhan Srinivasa <[email protected]>",
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec test/test-*.js"
},
"dependencies": {
"express": "~3.5.0",
"swig": "~1.3.2",
"mongoose": "~3.8.8",
"connect-mongo": "~0.4.0",
"connect-flash": "~0.1.1",
"passport": "~0.2.0",
"passport-local": "~0.1.6",
"passport-facebook": "~1.0.2",
"passport-twitter": "~1.0.2",
"passport-github": "~0.1.5",
"passport-google-oauth": "~0.1.5",
"async": "~0.2.10",
"underscore": "~1.6.0",
"view-helpers": "~0.1.4"
},
"devDependencies": {
"supertest": "latest",
"should": "latest",
"mocha": "latest"
}
}