- 修复路由配置,实现根路径自动重定向到/project - 新增Gitea OAuth认证系统和相关组件 - 完善日志系统实现,包含pino日志工具和中间件 - 重构页面结构,分离项目管理和环境管理页面 - 新增CORS、Session等关键中间件 - 优化前端请求封装和类型定义 - 修复TypeScript类型错误和参数传递问题
34 lines
1002 B
JSON
34 lines
1002 B
JSON
{
|
|
"name": "web",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "rsbuild build",
|
|
"check": "biome check --write",
|
|
"dev": "rsbuild dev --open",
|
|
"format": "biome format --write",
|
|
"preview": "rsbuild preview"
|
|
},
|
|
"dependencies": {
|
|
"@arco-design/web-react": "^2.66.4",
|
|
"axios": "^1.11.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-router": "^7.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@arco-plugins/unplugin-react": "2.0.0-beta.5",
|
|
"@rsbuild/core": "^1.4.13",
|
|
"@rsbuild/plugin-less": "^1.4.0",
|
|
"@rsbuild/plugin-react": "^1.3.4",
|
|
"@rsbuild/plugin-svgr": "^1.2.2",
|
|
"@tailwindcss/postcss": "^4.1.11",
|
|
"@types/react": "^19.1.9",
|
|
"@types/react-dom": "^19.1.7",
|
|
"tailwindcss": "^4.1.11",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
|
|
}
|