-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 718 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 718 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
{
"name": "nodejs-jwt-token-authentication-api",
"version": "1.0.0",
"description": "This repository provides jwt token authentication and provides various APIs like User Registration,Login etc.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "env-cmd -f ./.env nodemon app.js"
},
"author": "Indrasen",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"env-cmd": "^10.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.0",
"mongoose-softdelete": "^0.6.3",
"morgan": "^1.9.1",
"nodemon": "^1.19.2",
"validator": "^13.7.0"
}
}