- Complete transformation from boilerplate to full-featured financial app - Add comprehensive dashboard with KPI cards and interactive charts - Implement transaction management with predefined expense/income categories - Create account management system with multiple account types - Add authentication flow with session management - Implement analytics overview with demo financial data - Add budget tracking and goal progress visualization - Include custom category creation functionality - Update branding and footer with MoneyMind by RoMoS - Add shadcn/ui components and Recharts for data visualization 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "agentic-coding-boilerplate",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "pnpm run db:migrate && next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"typecheck": "tsc --noEmit",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:migrate": "drizzle-kit migrate",
|
|
"db:push": "drizzle-kit push",
|
|
"db:studio": "drizzle-kit studio",
|
|
"db:dev": "drizzle-kit push",
|
|
"db:reset": "drizzle-kit drop && drizzle-kit push"
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/openai": "^2.0.9",
|
|
"@ai-sdk/react": "^2.0.9",
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
"@radix-ui/react-label": "^2.1.7",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
"@types/uuid": "^11.0.0",
|
|
"ai": "^5.0.9",
|
|
"better-auth": "^1.3.4",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"drizzle-orm": "^0.44.4",
|
|
"lucide-react": "^0.539.0",
|
|
"next": "15.4.6",
|
|
"next-themes": "^0.4.6",
|
|
"pg": "^8.16.3",
|
|
"postgres": "^3.4.7",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"react-hook-form": "^7.63.0",
|
|
"react-markdown": "^10.1.0",
|
|
"recharts": "^3.2.1",
|
|
"tailwind-merge": "^3.3.1",
|
|
"uuid": "^13.0.0",
|
|
"zod": "^4.0.17"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/pg": "^8.15.5",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"drizzle-kit": "^0.31.4",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.4.6",
|
|
"shadcn": "^3.0.0",
|
|
"tailwindcss": "^4",
|
|
"tw-animate-css": "^1.3.6",
|
|
"typescript": "^5"
|
|
}
|
|
}
|