-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
35 lines (35 loc) · 858 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
33
34
35
{
"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",
"scripts": {
"start": "nodemon index.js",
"test": "mocha"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"express": "^4.21.2",
"express-jwt": "^6.0.0",
"express-validation": "^1.0.2",
"joi": "^13.0.2",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.9.8",
"nodemon": "^2.0.20",
"sequelize": "^6.29.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^10.1.0",
"supertest": "^4.0.2",
"supertest-as-promised": "^4.0.2"
}
}