package.json 646 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "backend",
  3. "version": "1.0.0",
  4. "description": "Express 5 Backend API",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "tsx watch src/index.ts",
  8. "build": "tsc",
  9. "start": "node dist/index.js",
  10. "test": "tsx --test tests/**/*.test.ts",
  11. "test:qiwei": "tsx --test tests/qiwei.api.test.ts"
  12. },
  13. "dependencies": {
  14. "express": "^5.0.0",
  15. "cors": "^2.8.5",
  16. "dotenv": "^16.4.5"
  17. },
  18. "devDependencies": {
  19. "@types/cors": "^2.8.17",
  20. "@types/express": "^5.0.0",
  21. "@types/node": "^22.10.0",
  22. "@types/supertest": "^6.0.2",
  23. "supertest": "^7.0.0",
  24. "tsx": "^4.19.0",
  25. "typescript": "^5.6.0"
  26. }
  27. }