package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@d8d/server",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "D8D API Server",
  6. "main": "src/index.ts",
  7. "types": "src/index.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./src/index.ts",
  11. "require": "./src/index.ts",
  12. "types": "./src/index.ts"
  13. },
  14. "./modules/*": {
  15. "import": "./src/modules/*",
  16. "require": "./src/modules/*",
  17. "types": "./src/modules/*"
  18. }
  19. },
  20. "scripts": {
  21. "build": "tsc",
  22. "dev": "tsc --watch",
  23. "typecheck": "tsc --noEmit",
  24. "test": "vitest",
  25. "test:unit": "vitest run tests/unit",
  26. "test:integration": "vitest run tests/integration",
  27. "test:coverage": "vitest --coverage",
  28. "test:typecheck": "tsc --noEmit"
  29. },
  30. "dependencies": {
  31. "@asteasolutions/zod-to-openapi": "^8.1.0",
  32. "@hono/swagger-ui": "^0.5.0",
  33. "@hono/zod-openapi": "1.0.2",
  34. "axios": "^1.12.2",
  35. "bcrypt": "^6.0.0",
  36. "debug": "^4.4.3",
  37. "hono": "^4.8.5",
  38. "jsonwebtoken": "^9.0.2",
  39. "minio": "^8.0.5",
  40. "node-cron": "^4.2.1",
  41. "pg": "^8.16.3",
  42. "pg-dump-restore": "1.0.13",
  43. "redis": "^4.7.0",
  44. "reflect-metadata": "^0.2.2",
  45. "typeorm": "^0.3.20",
  46. "uuid": "^11.1.0",
  47. "zod": "^4.1.12"
  48. },
  49. "devDependencies": {
  50. "@types/bcrypt": "^6.0.0",
  51. "@types/debug": "^4.1.12",
  52. "@types/jsonwebtoken": "^9.0.7",
  53. "@types/pg": "^8.11.10",
  54. "tsc-alias": "^1.8.10",
  55. "typescript": "^5.8.3",
  56. "vitest": "^3.2.4",
  57. "@vitest/coverage-v8": "^3.2.4"
  58. },
  59. "files": [
  60. "src"
  61. ]
  62. }