-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 916 Bytes
/
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": "passportjs-local",
"version": "1.0.0",
"description": "",
"main": "routes.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development nodemon server.js",
"start": "NODE_ENV=production node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"ejs": "^2.6.1",
"express": "^4.17.1",
"express-session": "^1.16.1",
"method-override": "^3.0.0",
"mongoose": "^5.5.12",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4"
},
"devDependencies": {
"dotenv": "^8.0.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1"
}
}