package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "name": "claude-code-hub",
  3. "version": "0.4.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev --port 13500",
  7. "build": "next build && cp VERSION .next/standalone/VERSION",
  8. "start": "next start",
  9. "lint": "biome check .",
  10. "lint:fix": "biome check --write .",
  11. "typecheck": "tsgo -p tsconfig.json --noEmit",
  12. "typecheck:tsc": "tsc -p tsconfig.json --noEmit",
  13. "format": "biome format --write .",
  14. "format:check": "biome format .",
  15. "clean:cache": "rm -rf .next tsconfig.tsbuildinfo node_modules/.cache",
  16. "test": "vitest run",
  17. "test:ui": "vitest --ui --watch",
  18. "test:e2e": "vitest run --config vitest.e2e.config.ts --reporter=verbose",
  19. "test:integration": "vitest run --config vitest.integration.config.ts --reporter=verbose",
  20. "test:coverage": "vitest run --coverage",
  21. "test:coverage:thinking-signature-rectifier": "vitest run --config vitest.thinking-signature-rectifier.config.ts --coverage",
  22. "test:coverage:quota": "vitest run --config vitest.quota.config.ts --coverage",
  23. "test:coverage:my-usage": "vitest run --config vitest.my-usage.config.ts --coverage",
  24. "test:coverage:proxy-guard-pipeline": "vitest run --config vitest.proxy-guard-pipeline.config.ts --coverage",
  25. "test:ci": "vitest run --reporter=default --reporter=junit --outputFile.junit=reports/vitest-junit.xml",
  26. "cui": "npx cui-server --host 0.0.0.0 --port 30000 --token a7564bc8882aa9a2d25d8b4ea6ea1e2e",
  27. "db:generate": "drizzle-kit generate && node scripts/validate-migrations.js",
  28. "db:migrate": "drizzle-kit migrate",
  29. "db:push": "drizzle-kit push",
  30. "db:studio": "drizzle-kit studio",
  31. "validate:migrations": "node scripts/validate-migrations.js"
  32. },
  33. "dependencies": {
  34. "@bull-board/api": "^6",
  35. "@bull-board/express": "^6",
  36. "@hono/swagger-ui": "^0.5",
  37. "@hono/zod-openapi": "^1",
  38. "@hookform/resolvers": "^5",
  39. "@iarna/toml": "^2.2.5",
  40. "@lobehub/icons": "^2",
  41. "@radix-ui/react-alert-dialog": "^1",
  42. "@radix-ui/react-avatar": "^1",
  43. "@radix-ui/react-checkbox": "^1",
  44. "@radix-ui/react-collapsible": "^1",
  45. "@radix-ui/react-dialog": "^1",
  46. "@radix-ui/react-dropdown-menu": "^2",
  47. "@radix-ui/react-label": "^2",
  48. "@radix-ui/react-popover": "^1",
  49. "@radix-ui/react-progress": "^1",
  50. "@radix-ui/react-select": "^2",
  51. "@radix-ui/react-slider": "^1",
  52. "@radix-ui/react-slot": "^1",
  53. "@radix-ui/react-switch": "^1",
  54. "@radix-ui/react-tabs": "^1",
  55. "@radix-ui/react-tooltip": "^1",
  56. "@scalar/hono-api-reference": "^0.9",
  57. "@tanstack/react-query": "^5",
  58. "@tanstack/react-virtual": "^3",
  59. "@tanstack/virtual-core": "^3",
  60. "antd": "^6",
  61. "bull": "^4",
  62. "class-variance-authority": "^0.7",
  63. "clsx": "^2",
  64. "cmdk": "^1",
  65. "date-fns": "^4",
  66. "date-fns-tz": "^3",
  67. "decimal.js-light": "^2",
  68. "dotenv": "^17",
  69. "drizzle-orm": "^0.44",
  70. "fetch-socks": "^1.3.2",
  71. "hono": "^4",
  72. "html2canvas": "^1",
  73. "ioredis": "^5",
  74. "jspdf": "^3",
  75. "lucide-react": "^0.555",
  76. "next": "^16",
  77. "next-intl": "^4",
  78. "next-themes": "^0.4",
  79. "pino": "^10",
  80. "pino-pretty": "^13",
  81. "postgres": "^3",
  82. "react": "^19",
  83. "react-day-picker": "^9",
  84. "react-dom": "^19",
  85. "react-hook-form": "^7",
  86. "react-syntax-highlighter": "^16.1.0",
  87. "recharts": "^3",
  88. "safe-regex": "^2",
  89. "server-only": "^0.0.1",
  90. "sonner": "^2",
  91. "tailwind-merge": "^3",
  92. "timeago.js": "^4",
  93. "tw-animate-css": "^1",
  94. "undici": "^7",
  95. "zod": "^4"
  96. },
  97. "devDependencies": {
  98. "@biomejs/biome": "^2",
  99. "@tailwindcss/postcss": "^4",
  100. "@types/ioredis": "^5",
  101. "@types/node": "^24",
  102. "@types/pg": "^8",
  103. "@types/react": "^19",
  104. "@types/react-dom": "^19",
  105. "@types/react-syntax-highlighter": "^15.5.13",
  106. "@typescript/native-preview": "7.0.0-dev.20251219.1",
  107. "@vitest/coverage-v8": "^4.0.16",
  108. "@vitest/ui": "^4.0.16",
  109. "bun-types": "^1",
  110. "drizzle-kit": "^0.31",
  111. "happy-dom": "^20.0.11",
  112. "tailwindcss": "^4",
  113. "typescript": "^5",
  114. "vitest": "^4.0.16"
  115. }
  116. }