package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "audio-book-server",
  3. "version": "1.0.0",
  4. "description": "AI有声书生成工具后端服务",
  5. "main": "dist/app.js",
  6. "scripts": {
  7. "dev": "tsx watch src/app.ts",
  8. "build": "tsc",
  9. "start": "node dist/app.js"
  10. },
  11. "dependencies": {
  12. "@koa/bodyparser": "^6.1.0",
  13. "@koa/cors": "^5.0.0",
  14. "@koa/router": "^12.0.1",
  15. "@prisma/client": "^6.19.3",
  16. "@types/ws": "^8.18.1",
  17. "axios": "^1.7.2",
  18. "crypto-js": "^4.2.0",
  19. "dotenv": "^16.4.5",
  20. "fluent-ffmpeg": "^2.1.2",
  21. "is-generator-function": "^1.1.2",
  22. "jsonwebtoken": "^9.0.2",
  23. "koa": "^3.1.2",
  24. "koa-mount": "^4.2.0",
  25. "koa-static": "^5.0.0",
  26. "mysql2": "^3.20.0",
  27. "prisma": "^6.19.3",
  28. "uuid": "^9.0.1",
  29. "ws": "^8.20.0"
  30. },
  31. "devDependencies": {
  32. "@types/crypto-js": "^4.2.2",
  33. "@types/fluent-ffmpeg": "^2.1.24",
  34. "@types/jsonwebtoken": "^9.0.6",
  35. "@types/koa": "^2.15.0",
  36. "@types/koa__cors": "^5.0.0",
  37. "@types/koa__router": "^12.0.4",
  38. "@types/node": "^20.14.2",
  39. "@types/uuid": "^9.0.8",
  40. "ts-node": "^10.9.2",
  41. "tsx": "^4.11.2",
  42. "typescript": "^5.4.5"
  43. }
  44. }