-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 833 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
{
"name": "auth_api",
"version": "1.0.0",
"description": "Complete JWT Authentication API in Express JS",
"main": "index.js",
"type": "module",
"scripts": {
"test": "dev",
"dev": "nodemon index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mian-ali/Authentication_API_JWT_in_Node-Express.git"
},
"author": "Ali Ahmad",
"license": "MIT",
"bugs": {
"url": "https://github.com/mian-ali/Authentication_API_JWT_in_Node-Express/issues"
},
"homepage": "https://github.com/mian-ali/Authentication_API_JWT_in_Node-Express#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.3",
"express": "^5.0.0-beta.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.5",
"nodemailer": "^6.8.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}