forked from IweZix/3BIN-Q1-Projet-Web-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 881 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
36
37
38
39
{
"name": "jwt-api-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"debug": "npm run dev",
"dev": "nodemon ./bin/www",
"start": "node ./bin/www",
"lint": "eslint **/*.js",
"lint:fix": "npm run lint -- --fix"
},
"nodemonConfig": {
"ignore": [
"data/*"
],
"exec": "npm run lint && node"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"escape-html": "^1.0.3",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"mysql2": "^3.11.3"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"globals": "^15.10.0",
"nodemon": "^2.0.22",
"prettier-airbnb-config": "^1.0.0"
},
"author": "e-Baron"
}