Files
clienthub/package.json
T
simone 97f58d23d2 feat(10-02): lead CRUD UI with list, detail, and form components
- /admin/leads list page with LeadTable component (all leads with status badges)
- /admin/leads/[id] detail page with full lead profile and activity log
- LeadForm component for creating/editing leads (modal dialogs)
- Server actions: createLead, updateLead, deleteLead with Zod validation
- Admin sidebar updated to include Lead link
- Added missing UI dependencies: @radix-ui/react-dialog, date-fns, Form component

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-06-11 15:37:34 +02:00

50 lines
1.3 KiB
JSON

{
"name": "clienthub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.14.0",
"nanoid": "^5.1.11",
"next": "16.2.6",
"next-auth": "^4.24.14",
"postgres": "^3.4.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.75.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}