feat: add market dashboard web app

This commit is contained in:
2026-06-23 09:56:20 +08:00
parent 154af21bfb
commit fcc68c9eb8
18 changed files with 2769 additions and 0 deletions

28
apps/web/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "shanghai-housing-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "^5.90.12",
"clsx": "^2.1.1",
"lucide-react": "^0.561.0",
"next": "^16.0.10",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"recharts": "^3.5.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
}
}