2
0

package.json 1.7 KB

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