{ "name": "frontend", "version": "0.1.0", "private": true, "scripts": { "dev": "npm run dev:precheck & npm run dev:ollama & npm run dev:start", "dev:start": "concurrently -n AI,NEXT -c cyan,green \"npm run dev:rust\" \"npm run dev:next\"", "dev:next": "next dev -p 3006", "dev:precheck": "powershell -NoProfile -Command \"$targetPorts=3001,3006; netstat -ano | Select-String LISTENING | ForEach-Object { $line=$_.ToString(); foreach($p in $targetPorts){ if($line -match ('[:]'+$p+'\\s')){ $foundPid=($line -split '\\s+')[-1]; try{ Stop-Process -Id $foundPid -Force -ErrorAction SilentlyContinue; Write-Host ('Freed port '+$p) }catch{} } } }; exit 0\"", "dev:ollama": "powershell -NoProfile -Command \"if (-not (Get-Process ollama -ErrorAction SilentlyContinue)) { Start-Process ollama -ArgumentList 'serve' -WindowStyle Hidden; Start-Sleep 3 }; exit 0\"", "dev:rust": "cd rust-ai && cargo run", "build": "next build", "start": "npm run dev:next", "lint": "eslint" }, "dependencies": { "@emoji-mart/data": "^1.2.1", "@emoji-mart/react": "^1.1.1", "@hookform/resolvers": "^3.9.1", "@radix-ui/react-alert-dialog": "^1.1.6", "@radix-ui/react-avatar": "^1.1.3", "@radix-ui/react-checkbox": "^1.1.4", "@radix-ui/react-dialog": "^1.1.6", "@radix-ui/react-dropdown-menu": "^2.1.6", "@radix-ui/react-label": "^2.1.2", "@radix-ui/react-radio-group": "^1.2.3", "@radix-ui/react-scroll-area": "^1.2.3", "@radix-ui/react-select": "^2.1.6", "@radix-ui/react-separator": "^1.1.2", "@radix-ui/react-slot": "^1.1.2", "@radix-ui/react-switch": "^1.1.3", "@radix-ui/react-tabs": "^1.1.3", "@radix-ui/react-tooltip": "^1.1.8", "@tanstack/react-table": "^8.20.6", "autoprefixer": "^10.4.20", "bcryptjs": "^3.0.3", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "emoji-mart": "^5.6.0", "framer-motion": "^11.15.0", "jose": "^6.2.3", "lucide-react": "^0.468.0", "next": "15.0.4", "next-themes": "^0.4.4", "pg": "^8.21.0", "react": "^18.3.1", "react-dom": "^18.3.1", "react-hook-form": "^7.54.2", "recharts": "^2.15.0", "sonner": "^1.7.4", "tailwind-merge": "^2.6.0", "vaul": "^1.1.2", "zod": "^3.24.2" }, "devDependencies": { "@types/node": "^20", "@types/pg": "^8.20.0", "@types/react": "^18", "@types/react-dom": "^18", "concurrently": "^10.0.3", "eslint": "^9", "eslint-config-next": "15.0.4", "postcss": "^8.4.49", "tailwindcss": "^3.4.17", "typescript": "^5" } }