-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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": "proyecto-devops",
"version": "0.5.9",
"description": "Proyecto universitario para devops",
"main": "../src/routes/routes.js",
"scripts": {
"test": "jest",
"dev": "npm run test && nodemon --env-file=.env src/app.js",
"lint": "eslint . --max-warnings 0",
"start": "node src/app.js"
},
"author": "Tomás Saint Romain",
"license": "MIT",
"dependencies": {
"@sentry/node": "^8.33.1",
"@sentry/profiling-node": "^8.33.0",
"@supabase/supabase-js": "^2.45.4",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"ejs": "^3.1.10",
"express": "^4.20.0",
"express-brute": "^1.0.1",
"express-rate-limit": "^7.4.0",
"ioredis": "^4.22.0",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"pg": "^8.12.0",
"swagger-themes": "^1.4.3",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4"
}
}