feat: 项目基本架构和组件引入、新增玩家服务中心入口和运营后台管理员入口。

This commit is contained in:
Stev_Wang
2025-12-12 00:14:36 +08:00
parent 209f50e4c4
commit f5906044d8
23 changed files with 5416 additions and 129 deletions

40
package.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "mhxy-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"antd": "^6.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.10.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"commitizen": "^4.3.1",
"cz-git": "^1.9.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}