This commit is contained in:
Krikorios
2025-07-14 10:14:20 +04:00
parent 890acbd5bc
commit 868c9b252c
21 changed files with 615 additions and 97 deletions
+8 -2
View File
@@ -7,7 +7,10 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed": "npx tsx prisma/seed.ts"
"db:seed": "npx tsx prisma/seed.ts",
"test:chat": "tsx scripts/testChatbot.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
@@ -24,10 +27,12 @@
"@supabase/supabase-js": "^2.50.4",
"@types/uuid": "^10.0.0",
"axios": "^1.10.0",
"dotenv": "^17.2.0",
"langchain": "^0.3.29",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"next-intl": "^4.3.4",
"ollama": "^0.5.16",
"openai": "^5.8.3",
"prisma": "^6.11.1",
"react": "^19.0.0",
@@ -47,6 +52,7 @@
"eslint-config-next": "15.3.5",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5"
"typescript": "^5",
"vitest": "^3.2.4"
}
}