-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.47 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.47 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "lupulos-api",
"version": "1.2.0",
"description": "Backend API de Lupulos App con arquitectura profesional. Express + MongoDB, autenticación JWT/OAuth, seguridad, validaciones, Swagger, logging centralizado y soporte AWS (EC2, ECS, Fargate, S3, SES, Secrets Manager).",
"private": true,
"type": "module",
"author": "Ignacio Sergio Díaz",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "nodemon --config nodemon.json",
"start": "node src/app.js",
"start:prod": "NODE_ENV=production node src/app.js",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"test:ci": "jest --ci --runInBand",
"build": "echo \"No build step required for Node.js API\"",
"healthcheck": "node -e \"console.log('OK')\"",
"seed:demo": "node --env-file=.env.local scripts/seed-demo.js"
},
"keywords": [
"lupulos-app",
"nodejs",
"express",
"backend",
"api",
"mongodb",
"jwt",
"oauth",
"swagger",
"aws",
"ec2",
"ecs",
"fargate",
"s3",
"ses",
"secrets-manager",
"devops",
"docker",
"jenkins"
],
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.540.0",
"@aws-sdk/client-s3": "^3.540.0",
"@aws-sdk/client-secrets-manager": "^3.540.0",
"@aws-sdk/client-ses": "^3.540.0",
"@aws-sdk/client-ssm": "^3.540.0",
"acme-client": "^5.4.0",
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"chalk": "^5.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"google-auth-library": "^9.15.1",
"helmet": "^8.0.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mercadopago": "^2.12.0",
"mongoose": "^8.9.5",
"mongoose-paginate-v2": "^1.9.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"music-metadata": "^11.12.3",
"node-cron": "^3.0.3",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
}
}