package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "saas-voc-server",
  3. "version": "0.1.0",
  4. "private": true,
  5. "type": "module",
  6. "description": "Independent domestic ecommerce VOC backend template",
  7. "engines": {
  8. "node": ">=22.13.0 <23"
  9. },
  10. "scripts": {
  11. "build": "tsc -p tsconfig.json",
  12. "dev": "tsx watch src/server.ts",
  13. "dev:local": "tsx watch src/local-server.ts",
  14. "start": "node dist/src/server.js",
  15. "start:local": "tsx src/local-server.ts",
  16. "migrate": "tsx scripts/migrate.ts",
  17. "import:dataset": "tsx scripts/import-dataset.ts",
  18. "test": "tsx --test test/**/*.test.ts",
  19. "test:coverage": "tsx --test --experimental-test-coverage test/**/*.test.ts",
  20. "typecheck": "tsc -p tsconfig.json --noEmit"
  21. },
  22. "dependencies": {
  23. "cors": "^2.8.6",
  24. "dotenv": "^17.2.3",
  25. "express": "^5.2.1",
  26. "parse-server": "^9.10.0",
  27. "pg": "^8.22.0",
  28. "zod": "^4.4.3"
  29. },
  30. "devDependencies": {
  31. "@types/cors": "^2.8.19",
  32. "@types/express": "^5.0.6",
  33. "@types/node": "^24.10.0",
  34. "@types/pg": "^8.16.0",
  35. "tsx": "^4.23.1",
  36. "typescript": "^7.0.2"
  37. },
  38. "overrides": {
  39. "ws": "8.21.0"
  40. }
  41. }