This commit is contained in:
Krikorios
2025-07-12 22:36:47 +04:00
parent 7fbf089ec5
commit f83b27db61
73 changed files with 19053 additions and 189 deletions
+31 -6
View File
@@ -6,22 +6,47 @@
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"db:seed": "npx tsx prisma/seed.ts"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.1.1",
"@langchain/openai": "^0.5.18",
"@prisma/client": "^6.11.1",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.50.4",
"@types/uuid": "^10.0.0",
"axios": "^1.10.0",
"langchain": "^0.3.29",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"next-intl": "^4.3.4",
"openai": "^5.8.3",
"prisma": "^6.11.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"next": "15.3.5"
"react-hook-form": "^7.60.0",
"recharts": "^3.1.0",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"typescript": "^5",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"@eslint/eslintrc": "^3"
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5"
}
}