package.json 995 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@saas/api-service",
  3. "version": "1.0.0",
  4. "description": "Core API service for SaaS platform",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "dev": "tsx watch src/index.ts",
  8. "build": "tsc",
  9. "start": "node dist/index.js",
  10. "migrate": "node dist/migrate.js",
  11. "seed": "node dist/seed.js"
  12. },
  13. "dependencies": {
  14. "express": "^4.18.2",
  15. "pg": "^8.11.3",
  16. "redis": "^4.6.10",
  17. "cors": "^2.8.5",
  18. "helmet": "^7.1.0",
  19. "dotenv": "^16.3.1",
  20. "express-rate-limit": "^7.1.5",
  21. "express-validator": "^7.0.1",
  22. "uuid": "^9.0.1",
  23. "axios": "^1.6.2",
  24. "multer": "^1.4.5-lts.1",
  25. "minio": "^7.1.3",
  26. "ws": "^8.14.2",
  27. "node-cron": "^3.0.3"
  28. },
  29. "devDependencies": {
  30. "@types/express": "^4.17.21",
  31. "@types/pg": "^8.10.7",
  32. "@types/cors": "^2.8.17",
  33. "@types/uuid": "^9.0.7",
  34. "@types/multer": "^1.4.11",
  35. "@types/ws": "^8.5.10",
  36. "@types/node-cron": "^3.0.11",
  37. "tsx": "^4.6.2",
  38. "typescript": "^5.3.3"
  39. }
  40. }