refactor: ♻️ 项目重构,使用Next.js+React+Ant Design组件。

This commit is contained in:
Stev_Wang
2025-12-13 00:06:44 +08:00
parent 8e26166b44
commit 0547db1cc1
20 changed files with 9479 additions and 87 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "mhxy_web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"commit": "cz"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.3.0",
"antd": "^6.1.0",
"next": "16.0.10",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"tailwindcss": "^4",
"typescript": "^5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}