-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.71 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.71 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
{
"name": "api-template-hospedajes",
"version": "1.4.2",
"description": "api-template-hospedajes",
"author": "HREF Digital Solutions - Sebastián Cerutti",
"private": true,
"license": "MIT",
"main": "dist/main.js",
"homepage": "https://www.href.com.ar",
"keywords": [
"typescript",
"nestjs"
],
"scripts": {
"build": "nest build",
"rimraf": "rimraf node_modules package-lock.json && npm i",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"seed:admin": "ts-node -r tsconfig-paths/register src/seed/seed-admin.ts",
"lint": "eslint --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@fastify/static": "^9.0.0",
"@nestjs/common": "^11.1.17",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^11.1.17",
"@nestjs/mongoose": "^11.0.4",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-fastify": "^11.1.17",
"@nestjs/platform-socket.io": "^11.1.17",
"@nestjs/schedule": "^6.1.1",
"@nestjs/swagger": "^11.2.6",
"@nestjs/websockets": "^11.1.17",
"@types/uuid": "^10.0.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.3",
"class-validator": "^0.15.1",
"funciones-basicas": "^2.1.14",
"jsonwebtoken": "^9.0.3",
"mercadopago": "^2.12.0",
"mongoose": "^9.3.3",
"nodemailer": "^8.0.4",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@nestjs/cli": "^11.0.17",
"@nestjs/jwt": "^11.0.2",
"@nestjs/platform-express": "^11.1.17",
"@nestjs/schematics": "^11.0.10",
"@nestjs/testing": "^11.1.17",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.21",
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/nodemailer": "^7.0.11",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^64.0.0",
"jest": "^30.3.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"mongodb-memory-server": "^11.0.1",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.2"
}
}