feat: add WonderQ admin UI

This commit is contained in:
duanshuwen
2026-06-30 12:02:44 +08:00
parent 282b90b622
commit 50e9b32806
160 changed files with 4893 additions and 137 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "wonderq-admin-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 5601",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --host 0.0.0.0 --port 5602"
},
"dependencies": {
"@vitejs/plugin-react": "^6.0.3",
"lucide-react": "^1.21.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"vite": "^8.1.0"
},
"devDependencies": {
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.3"
}
}