{ "name": "app-padel-backend", "version": "1.0.0", "description": "Backend API REST para App de Canchas de Pádel", "main": "dist/index.js", "scripts": { "dev": "tsx watch src/index.ts", "build": "tsc", "start": "node dist/index.js", "db:generate": "prisma generate", "db:migrate": "prisma migrate dev", "db:studio": "prisma studio", "db:seed": "tsx prisma/seed.ts", "lint": "eslint src --ext .ts", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest --testPathPattern=unit", "test:integration": "jest --testPathPattern=integration" }, "keywords": [ "padel", "reservas", "api", "nodejs" ], "author": "Consultoria AS", "license": "ISC", "dependencies": { "@prisma/client": "^5.8.0", "bcrypt": "^5.1.1", "cors": "^2.8.5", "dotenv": "^16.3.1", "express": "^4.18.2", "express-rate-limit": "^7.1.5", "helmet": "^7.1.0", "jsonwebtoken": "^9.0.2", "mercadopago": "^2.12.0", "morgan": "^1.10.0", "nodemailer": "^6.9.8", "qrcode": "^1.5.4", "winston": "^3.11.0", "xlsx": "^0.18.5", "zod": "^3.22.4" }, "devDependencies": { "@types/bcrypt": "^5.0.2", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/jest": "^30.0.0", "@types/jsonwebtoken": "^9.0.5", "@types/morgan": "^1.9.9", "@types/node": "^20.10.6", "@types/nodemailer": "^6.4.14", "@types/qrcode": "^1.5.6", "@types/supertest": "^6.0.3", "@typescript-eslint/eslint-plugin": "^6.17.0", "@typescript-eslint/parser": "^6.17.0", "eslint": "^8.56.0", "jest": "^30.2.0", "prisma": "^5.8.0", "supertest": "^7.2.2", "ts-jest": "^29.4.6", "tsx": "^4.7.0", "typescript": "^5.3.3" } }