-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "api-mavs",
"version": "1.0.0",
"description": "API para el proyecto MAVS",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "node --watch -r dotenv/config server.js",
"start": "node -r dotenv/config server.js",
"lint": "eslint .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --ci --coverage --coverageReporters json-summary",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"keywords": [],
"author": "Roberto Bocio Melo",
"license": "ISC",
"dependencies": {
"bcrypt": "5.1.1",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"express": "4.21.0",
"jsonwebtoken": "9.0.2",
"mongoose": "8.6.2"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@jest/globals": "29.7.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.13",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"jest": "29.7.0"
},
"exclude": [
"node_modules"
],
"jest": {
"testEnvironment": "node",
"transform": {},
"coveragePathIgnorePatterns": [
"/node_modules/",
"\\.ts$",
"\\injections.js$",
"\\model.js$",
"\\.route.js$"
],
"collectCoverageFrom": [
"./src/**"
],
"coverageThreshold": {
"global": {
"lines": 90
}
},
"setupFiles": [
"<rootDir>/test-setup.js"
]
}
}