-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 KB
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
{
"name": "node-auth-kit",
"version": "1.0.0",
"description": "A starter boiler plate for node application with authentication, which includes Google, Facebook and email/password authentication strategies using passport & JWT.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec babel-node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soha-moosa/node-auth-kit.git"
},
"author": "Soha Moosa",
"license": "MIT",
"bugs": {
"url": "https://github.com/soha-moosa/node-auth-kit/issues"
},
"homepage": "https://github.com/soha-moosa/node-auth-kit#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"nodemon": "^1.19.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-mongodb-session": "^2.2.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.16.2",
"express-validator": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.12",
"nodemailer": "^6.3.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"passport-google-plus-token": "^2.1.0",
"passport-local": "^1.0.0"
}
}