-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (29 loc) · 776 Bytes
/
package.json
File metadata and controls
30 lines (29 loc) · 776 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
{
"name": "jwt-auth-starter",
"version": "1.0.0",
"description": "A simple JWT authentication example using Node.js, Express, and MySQL.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.1.1",
"sequelize": "^6.31.1",
"winston": "^3.8.2"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"engines": {
"node": ">=14.0.0"
},
"author": "Achref Ben Brahim",
"license": "MIT"
}