feat(juragankos-app): scaffold chatbot app with Vite + Tailwind + shadcn/ui + router\n\n- Add chat-focused UI with glass effect\n- Add admin login and dashboard pages\n- Configure Tailwind + shadcn, lucide icons\n- Add routing and simple auth stub\n- Include CODEX.md project context

This commit is contained in:
2025-08-10 19:53:38 +07:00
parent 4fe4b13f39
commit 7a14c80eec
27 changed files with 3952 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{
"name": "juragankos-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.539.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.8.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.3.3",
"vite": "^5.0.10"
}
}