-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 886 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
31
32
33
34
35
36
37
38
39
{
"name": "node-jwt",
"version": "1.0.0",
"description": "Node JWT",
"author": "Mauricio Urraco <mauriurraco@gmail.com>",
"homepage": "https://github.com/murraco/",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint .",
"test": "mocha"
},
"dependencies": {
"bcrypt": "^6.0.0",
"body-parser": "^1.20.6",
"express": "^4.22.2",
"express-jwt": "^8.5.1",
"express-validation": "^4.1.1",
"joi": "^17.13.4",
"jsonwebtoken": "^9.0.3",
"mysql2": "^3.23.2",
"sequelize": "^6.37.8",
"uuid": "^14.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"chai": "^4.5.0",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"mocha": "^11.7.6",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
}
}