-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.74 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
{
"name": "aviation-integration",
"version": "1.0.0",
"description": "Servicio middleware en Node.js y TypeScript para integración con AviationStack. Provee API RESTful para consulta de vuelos y aerolíneas.",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon --watch src -e ts --exec ts-node src/index.ts",
"build": "tsc",
"test": "jest --coverage",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:generate": "npm run typeorm migration:generate -- -d src/config/database.ts",
"migration:run": "npm run typeorm migration:run -- -d src/config/database.ts"
},
"author": "@jdanielrodriguez",
"license": "MIT",
"dependencies": {
"amqplib": "^0.10.8",
"axios": "^1.9.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"mysql2": "^3.14.1",
"nodemailer": "^7.0.3",
"redis": "^4.6.7",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typescript": "^5.8.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.1",
"@types/nodemailer": "^6.4.17",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"jest": "^30.0.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.24"
}
}