This commit is contained in:
stakeswky
2023-06-09 14:13:25 +08:00
committed by GitHub
parent ba9d9c3d5f
commit 2378615887
14 changed files with 794 additions and 0 deletions

30
admin/package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "kbgpt-deafult",
"private": true,
"version": "0.0.0",
"type": "module",
"author": "anonymous",
"scripts": {
"dev": "concurrently \"vite\" \"npm run start:api\"",
"build": "tsc && vite build",
"preview": "vite preview",
"start:api": "node server.js"
},
"dependencies": {
"concurrently": "^8.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongoose": "^7.2.2",
"react": "^18.2.0",
"react-admin": "^4.11.0",
"react-dom": "^18.2.0",
"tushan": "^0.2.13"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"typescript": "^4.9.3",
"vite": "^4.2.1"
}
}