-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 KB
/
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
40
41
42
{
"name": "2024.1-sentinela-backend-beneficios",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js",
"test": "jest",
"lint": "eslint .",
"check-format": "prettier --check .",
"format": "prettier --write .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@eslint/js": "^9.8.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.19.2",
"generate-password": "^1.7.1",
"husky": "^9.1.3",
"jest": "^29.7.0",
"jest-sonar": "^0.2.16",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.7",
"mongodb-memory-server": "^10.0.0",
"mongoose": "^8.3.5",
"nodemailer": "^6.9.14",
"supertest": "^7.0.0"
},
"devDependencies": {
"nodemon": "^3.1.0",
"prettier": "^3.3.3"
}
}