- Add package.json with dependencies for TanStack, HeroUI, and Vite. - Include favicon, logos, and manifest for PWA support. - Create global styles with Tailwind CSS and HeroUI. - Set up TypeScript configuration for the project. - Implement routing with TanStack Router and context for React Query. - Create root and index routes with basic application structure. - Add integration files for HeroUI and TanStack Query. - Configure Vite with necessary plugins for React and Tailwind CSS.
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "template",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev --port 3000",
|
|
"start": "node .output/server/index.mjs",
|
|
"build": "vite build",
|
|
"serve": "vite preview",
|
|
"format": "biome format",
|
|
"lint": "biome lint",
|
|
"check": "biome check"
|
|
},
|
|
"dependencies": {
|
|
"@heroui/react": "^2.8.2",
|
|
"@tailwindcss/vite": "^4.1.11",
|
|
"@tanstack/react-query": "^5.84.1",
|
|
"@tanstack/react-query-devtools": "^5.84.1",
|
|
"@tanstack/react-router": "^1.130.12",
|
|
"@tanstack/react-router-devtools": "^1.130.13",
|
|
"@tanstack/react-router-with-query": "^1.130.12",
|
|
"@tanstack/react-start": "^1.130.15",
|
|
"@tanstack/router-plugin": "^1.130.15",
|
|
"framer-motion": "^12.23.12",
|
|
"react": "^19.1.1",
|
|
"react-dom": "^19.1.1",
|
|
"tailwindcss": "^4.1.11",
|
|
"vite-tsconfig-paths": "^5.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.1.3",
|
|
"@types/react": "^19.1.9",
|
|
"@types/react-dom": "^19.1.7",
|
|
"@vitejs/plugin-react": "^4.7.0",
|
|
"jsdom": "^26.1.0",
|
|
"typescript": "^5.7.2",
|
|
"vite": "^6.3.5",
|
|
"web-vitals": "^5.1.0"
|
|
}
|
|
}
|