reckue-dev/apps/web/package.json
claude 30813da8ac feat(web): Tailwind CSS v4, UI component library, responsive design
- Install Tailwind CSS v4 with @tailwindcss/postcss, clsx, tailwind-merge, lucide-react
- Create design token system in globals.css (@theme block)
- Create cn() utility for conditional Tailwind class merging
- Build 9 base UI components: Button, Input, Textarea, Select, Card, Badge, FormGroup, Modal, Skeleton
- Refactor all pages to use Tailwind classes and UI components (remove all inline styles)
- Add responsive sidebar with mobile hamburger menu overlay
- Add responsive grid layouts (1-col mobile, 2-col tablet, 3-col desktop)
- Replace unicode icons with lucide-react icons
- Add loading skeletons for dashboard and project detail pages
- Add Rust agent build script (build.ps1) and Cargo.lock

Refs #155, #156, #157

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 23:56:33 +05:00

31 lines
709 B
JSON

{
"name": "@reckue-dev/web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"clsx": "^2.1.1",
"lucide-react": "^0.574.0",
"next": "^15.0.0",
"postcss": "^8.4.31",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"socket.io-client": "^4.8.0",
"tailwind-merge": "^3.4.1",
"tailwindcss": "^4.2.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.7.0"
}
}