package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. "types": "./src/index.ts",
  11. "import": "./src/index.ts",
  12. "require": "./src/index.ts"
  13. },
  14. "./modules/*": {
  15. "types": "./src/modules/*",
  16. "import": "./src/modules/*",
  17. "require": "./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. "@d8d/shared-types": "workspace:*",
  35. "@d8d/shared-utils": "workspace:*",
  36. "@d8d/shared-crud": "workspace:*",
  37. "@d8d/core-module": "workspace:*",
  38. "axios": "^1.12.2",
  39. "bcrypt": "^6.0.0",
  40. "debug": "^4.4.3",
  41. "hono": "^4.8.5",
  42. "jsonwebtoken": "^9.0.2",
  43. "minio": "^8.0.5",
  44. "node-cron": "^4.2.1",
  45. "pg": "^8.16.3",
  46. "pg-dump-restore": "1.0.13",
  47. "redis": "^4.7.0",
  48. "reflect-metadata": "^0.2.2",
  49. "typeorm": "^0.3.20",
  50. "uuid": "^11.1.0",
  51. "zod": "^4.1.12"
  52. },
  53. "devDependencies": {
  54. "@types/bcrypt": "^6.0.0",
  55. "@types/debug": "^4.1.12",
  56. "@types/jsonwebtoken": "^9.0.7",
  57. "@types/pg": "^8.11.10",
  58. "tsc-alias": "^1.8.10",
  59. "typescript": "^5.8.3",
  60. "vitest": "^3.2.4",
  61. "@vitest/coverage-v8": "^3.2.4"
  62. },
  63. "files": [
  64. "src"
  65. ]
  66. }