{ "name": "@saas/auth-service", "version": "1.0.0", "description": "Authentication service for SaaS platform", "main": "dist/index.js", "scripts": { "dev": "tsx watch src/index.ts", "build": "tsc", "start": "node dist/index.js", "migrate": "node dist/migrate.js", "seed": "node dist/seed.js" }, "dependencies": { "express": "^4.18.2", "bcryptjs": "^2.4.3", "jsonwebtoken": "^9.0.2", "pg": "^8.11.3", "redis": "^4.6.10", "cors": "^2.8.5", "helmet": "^7.1.0", "dotenv": "^16.3.1", "express-rate-limit": "^7.1.5", "express-validator": "^7.0.1", "uuid": "^9.0.1" }, "devDependencies": { "@types/express": "^4.17.21", "@types/bcryptjs": "^2.4.6", "@types/jsonwebtoken": "^9.0.5", "@types/pg": "^8.10.7", "@types/cors": "^2.8.17", "@types/uuid": "^9.0.7", "tsx": "^4.6.2", "typescript": "^5.3.3" } }