-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 764 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 764 Bytes
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
{
"name": "nodejs-passport",
"version": "1.0.0",
"description": "RestFul API login using passport",
"main": "index.js",
"scripts": {
"start": "nodemon —inspect ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nodejs",
"express",
"mongodb",
"auth",
"passport"
],
"author": "hocanms",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.15",
"morgan": "^1.9.1",
"nodemon": "^1.18.8",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0"
}
}