package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "d8d-starter",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "PORT=8080 node server",
  8. "build": "npm run build:client && npm run build:server",
  9. "build:client": "vite build --outDir dist/client --manifest",
  10. "build:server": "vite build --ssr src/server/index.tsx --outDir dist/server",
  11. "start": "PORT=8080 cross-env NODE_ENV=production node server"
  12. },
  13. "dependencies": {
  14. "@ant-design/icons": "^6.0.0",
  15. "@heroicons/react": "^2.2.0",
  16. "@hono/node-server": "^1.17.1",
  17. "@hono/react-renderer": "^1.0.1",
  18. "@hono/swagger-ui": "^0.5.2",
  19. "@hono/zod-openapi": "^1.0.2",
  20. "@hookform/resolvers": "^5.2.1",
  21. "@radix-ui/react-accordion": "^1.2.11",
  22. "@radix-ui/react-alert-dialog": "^1.1.14",
  23. "@radix-ui/react-aspect-ratio": "^1.1.7",
  24. "@radix-ui/react-avatar": "^1.1.10",
  25. "@radix-ui/react-checkbox": "^1.3.2",
  26. "@radix-ui/react-collapsible": "^1.1.11",
  27. "@radix-ui/react-context-menu": "^2.2.15",
  28. "@radix-ui/react-dialog": "^1.1.14",
  29. "@radix-ui/react-dropdown-menu": "^2.1.15",
  30. "@radix-ui/react-hover-card": "^1.1.14",
  31. "@radix-ui/react-label": "^2.1.7",
  32. "@radix-ui/react-menubar": "^1.1.15",
  33. "@radix-ui/react-navigation-menu": "^1.2.13",
  34. "@radix-ui/react-popover": "^1.1.14",
  35. "@radix-ui/react-progress": "^1.1.7",
  36. "@radix-ui/react-radio-group": "^1.3.7",
  37. "@radix-ui/react-scroll-area": "^1.2.9",
  38. "@radix-ui/react-select": "^2.2.5",
  39. "@radix-ui/react-separator": "^1.1.7",
  40. "@radix-ui/react-slider": "^1.3.5",
  41. "@radix-ui/react-slot": "^1.2.3",
  42. "@radix-ui/react-switch": "^1.2.5",
  43. "@radix-ui/react-tabs": "^1.1.12",
  44. "@radix-ui/react-toggle": "^1.1.9",
  45. "@radix-ui/react-toggle-group": "^1.1.10",
  46. "@radix-ui/react-tooltip": "^1.2.7",
  47. "@tanstack/react-query": "^5.83.0",
  48. "antd": "^5.26.6",
  49. "axios": "^1.11.0",
  50. "bcrypt": "^6.0.0",
  51. "class-variance-authority": "^0.7.1",
  52. "clsx": "^2.1.1",
  53. "cmdk": "^1.1.1",
  54. "compression": "^1.8.0",
  55. "date-fns": "^4.1.0",
  56. "dayjs": "^1.11.13",
  57. "debug": "^4.4.1",
  58. "dotenv": "^17.2.1",
  59. "embla-carousel-react": "^8.6.0",
  60. "hono": "^4.8.5",
  61. "input-otp": "^1.4.2",
  62. "jsonwebtoken": "^9.0.2",
  63. "lucide-react": "^0.536.0",
  64. "mysql2": "^3.14.2",
  65. "next-themes": "^0.4.6",
  66. "react": "^19.1.0",
  67. "react-day-picker": "^9.8.1",
  68. "react-dom": "^19.1.0",
  69. "react-hook-form": "^7.61.1",
  70. "react-resizable-panels": "^3.0.4",
  71. "react-router": "^7.7.0",
  72. "react-router-dom": "^7.7.0",
  73. "recharts": "2.15.4",
  74. "reflect-metadata": "^0.2.2",
  75. "sirv": "^3.0.1",
  76. "sonner": "^2.0.7",
  77. "tailwind-merge": "^3.3.1",
  78. "tw-animate-css": "^1.3.6",
  79. "typeorm": "^0.3.25",
  80. "vaul": "^1.1.2",
  81. "zod": "^4.0.15"
  82. },
  83. "devDependencies": {
  84. "@tailwindcss/vite": "^4.1.11",
  85. "@types/bcrypt": "^6.0.0",
  86. "@types/debug": "^4.1.12",
  87. "@types/jsonwebtoken": "^9.0.10",
  88. "@types/node": "^24.0.10",
  89. "@types/react": "^19.1.8",
  90. "@types/react-dom": "^19.1.6",
  91. "@vitejs/plugin-react-swc": "^3.10.2",
  92. "cross-env": "^7.0.3",
  93. "tailwindcss": "^4.1.11",
  94. "tsx": "^4.20.3",
  95. "typescript": "~5.8.3",
  96. "vite": "^7.0.0",
  97. "vite-plugin-iframe-communicator": "^0.0.10",
  98. "vite-progress-tracking-plugin": "^0.0.2"
  99. }
  100. }