feat: update Home component with new UI elements and improved request handling chore: add components.json for component configuration feat: implement Badge component for status indication feat: create Button component for consistent styling feat: develop Card component structure for content display feat: add Input component for user input fields feat: implement Label component for form accessibility feat: create Select component for dropdown functionality feat: add Separator component for visual separation feat: implement Toaster component for notifications feat: create Tabs component for tabbed navigation feat: add Textarea component for multi-line input feat: add utility functions for class name management
36 lines
802 B
JSON
36 lines
802 B
JSON
{
|
|
"name": "real-starter",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@base-ui/react": "^1.4.1",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^1.14.0",
|
|
"next": "16.2.5",
|
|
"next-themes": "^0.4.6",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"shadcn": "^4.7.0",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tw-animate-css": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.5",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|