-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "node-authentication",
"version": "1.0.0",
"description": "Nodejs Authentication",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"keywords": [
"node",
"authentication",
"passport"
],
"author": "Rupa",
"license": "ISC",
"bugs": {
"url": "https://github.com/rupachowrasia/node-authentication/issues"
},
"homepage": "https://github.com/rupachowrasia/node-authentication#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"express": "^4.15.3",
"express-session": "^1.15.3",
"method-override": "^2.3.9",
"mongoose": "^4.11.1",
"morgan": "^1.8.2",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}