Files
Dramlog-Prod/package.json
robin f52cfb80fc fix: resolve magic scan crash and implement context-aware AI languages
- Fixed SQL syntax error in magicScan caused by single quotes
- Implemented dynamic locale-aware AI suggestions (Technical: EN, Custom Tags: Localized)
- Updated Dexie schema to version 2 (added locale to pending_scans)
- Fixed missing bottle_id in UploadQueue synchronization
- Installed missing dexie dependencies via pnpm
2025-12-19 14:06:13 +01:00

56 lines
1.3 KiB
JSON

{
"name": "whisky-vault",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:unit": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.39.0",
"@tanstack/react-query": "^5.0.0",
"canvas-confetti": "^1.9.2",
"dexie": "^4.2.1",
"dexie-react-hooks": "^4.2.0",
"heic2any": "^0.0.4",
"lucide-react": "^0.300.0",
"next": "14.2.23",
"openai": "^6.15.0",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.34.5",
"uuid": "^13.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.23",
"jsdom": "^27.3.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vitest": "^4.0.16"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
]
}
}