package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "ani-assistant",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev --turbopack",
  7. "build": "next build",
  8. "start": "next start",
  9. "lint": "next lint",
  10. "db:generate": "prisma generate",
  11. "db:push": "prisma db push",
  12. "db:migrate": "prisma migrate dev",
  13. "db:studio": "prisma studio",
  14. "db:setup": "tsx scripts/setup.ts",
  15. "db:seed": "tsx scripts/seed.ts",
  16. "check-env": "tsx scripts/check-env.ts",
  17. "migrate-to-postgres": "tsx scripts/migrate-to-postgres.ts",
  18. "clear-sessions": "node scripts/clear-sessions.js",
  19. "test:openrouter": "node scripts/test-openrouter.js",
  20. "test:api": "node scripts/test-api.js",
  21. "test:account": "node scripts/test-account-api.js",
  22. "cleanup-images": "tsx scripts/cleanup-profile-images.ts",
  23. "verify-setup": "tsx scripts/verify-setup.ts"
  24. },
  25. "dependencies": {
  26. "@ai-sdk/openai": "^1.3.23",
  27. "@assistant-ui/react-ai-sdk": "^0.10.15",
  28. "@auth/prisma-adapter": "^2.10.0",
  29. "@headlessui/react": "^2.2.7",
  30. "@prisma/client": "^6.12.0",
  31. "@radix-ui/react-alert-dialog": "^1.1.15",
  32. "@radix-ui/react-avatar": "^1.1.10",
  33. "@radix-ui/react-dialog": "^1.1.14",
  34. "@radix-ui/react-dropdown-menu": "^2.1.15",
  35. "@radix-ui/react-label": "^2.1.7",
  36. "@radix-ui/react-popover": "^1.1.15",
  37. "@radix-ui/react-scroll-area": "^1.2.10",
  38. "@radix-ui/react-select": "^2.2.5",
  39. "@radix-ui/react-separator": "^1.1.7",
  40. "@radix-ui/react-slot": "^1.2.3",
  41. "@radix-ui/react-tabs": "^1.1.13",
  42. "@radix-ui/react-toast": "^1.2.14",
  43. "@react-pdf/renderer": "^4.3.0",
  44. "@types/bcryptjs": "^2.4.6",
  45. "ai": "^4.3.19",
  46. "assistant-ui": "^0.0.56",
  47. "bcryptjs": "^3.0.2",
  48. "class-variance-authority": "^0.7.1",
  49. "clsx": "^2.1.1",
  50. "date-fns": "^4.1.0",
  51. "dotenv": "^17.2.0",
  52. "html2canvas": "^1.4.1",
  53. "jspdf": "^3.0.1",
  54. "lucide-react": "^0.525.0",
  55. "next": "15.4.1",
  56. "next-auth": "^4.24.11",
  57. "next-themes": "^0.4.6",
  58. "node-fetch": "^3.3.2",
  59. "openai": "^5.10.1",
  60. "prisma": "^6.12.0",
  61. "react": "19.1.0",
  62. "react-day-picker": "^9.11.1",
  63. "react-dom": "19.1.0",
  64. "react-markdown": "^10.1.0",
  65. "react-paginate": "^8.3.0",
  66. "recharts": "^3.2.1",
  67. "rehype-highlight": "^7.0.2",
  68. "rehype-raw": "^7.0.0",
  69. "rehype-stringify": "^10.0.1",
  70. "remark-gfm": "^4.0.1",
  71. "sonner": "^2.0.7",
  72. "tailwind-merge": "^3.3.1",
  73. "tsx": "^4.20.3"
  74. },
  75. "devDependencies": {
  76. "@eslint/eslintrc": "^3",
  77. "@types/node": "^20.19.8",
  78. "@types/react": "^19",
  79. "@types/react-dom": "^19",
  80. "autoprefixer": "^10.4.21",
  81. "eslint": "^9",
  82. "eslint-config-next": "15.4.1",
  83. "postcss": "^8.5.6",
  84. "tailwindcss": "^3.4.0",
  85. "tw-animate-css": "^1.3.5",
  86. "typescript": "^5"
  87. }
  88. }