package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. "bootstrap:parse-rest": "tsx scripts/bootstrap-parse-rest.ts",
  18. "verify:parse-rest": "tsx scripts/verify-parse-rest.ts",
  19. "import:workbook:parse-rest": "tsx scripts/import-workbook-parse-rest.ts",
  20. "sync:competitors:parse-rest": "tsx scripts/sync-parse-rest-competitors.ts",
  21. "sync:jd-listings": "tsx scripts/sync-jd-listings.ts",
  22. "score:jd-listings": "tsx scripts/score-listings.ts",
  23. "verify:listing-rollout": "tsx scripts/verify-listing-rollout.ts",
  24. "seed:knowledge:parse-rest": "tsx scripts/seed-product-knowledge.ts",
  25. "enrich:competitors:local": "tsx scripts/enrich-local-competitors.ts",
  26. "import:dataset": "tsx scripts/import-dataset.ts",
  27. "test": "tsx --test test/**/*.test.ts",
  28. "test:coverage": "tsx --test --experimental-test-coverage test/**/*.test.ts",
  29. "typecheck": "tsc -p tsconfig.json --noEmit"
  30. },
  31. "dependencies": {
  32. "cors": "^2.8.6",
  33. "dotenv": "^17.2.3",
  34. "exceljs": "^4.4.0",
  35. "express": "^5.2.1",
  36. "parse-server": "^9.10.0",
  37. "pg": "^8.22.0",
  38. "zod": "^4.4.3"
  39. },
  40. "devDependencies": {
  41. "@types/cors": "^2.8.19",
  42. "@types/express": "^5.0.6",
  43. "@types/node": "^24.10.0",
  44. "@types/pg": "^8.16.0",
  45. "tsx": "^4.23.1",
  46. "typescript": "^7.0.2"
  47. },
  48. "overrides": {
  49. "ws": "8.21.0"
  50. }
  51. }