-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
43
44
45
{
"name": "2024.1-sentinela-backend-usuarios",
"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": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.19.2",
"generate-password": "^1.7.1",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.7",
"mongoose": "^8.3.5",
"nodemailer": "^6.9.14",
"pdfkit": "^0.15.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-sonar": "^0.2.16",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^3.1.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
}
}