-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.41 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
44
45
46
47
48
49
{
"name": "authentication-methods",
"version": "1.0.0",
"description": "This project is based on three authentication methods Session,Token,Passwordless based authentication",
"main": "index.js",
"scripts": {
"sessionAuth": "nodemon sessionAuth.js",
"tokenAuth": "nodemon tokenAuth.js",
"passwordLessAuth": "nodemon passwordLessAuth.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rishabh2324/authentication-methods-using-nodejs.git"
},
"keywords": [
"Session Based Authentication",
"Token Based Authentication",
"Passwordless Authentication",
"NodeJs",
"Authentication",
"Login",
"SignUp",
"Reset Password"
],
"author": "Rishabh Jain",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rishabh2324/authentication-methods-using-nodejs/issues"
},
"homepage": "https://github.com/Rishabh2324/authentication-methods-using-nodejs#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.11.0",
"mongoose": "^6.7.0",
"nodemailer": "^6.8.0",
"nodemon": "^2.0.20",
"shortid": "^2.2.16",
"twilio": "^3.83.1"
}
}