- 新增 deploy/docker/:Docker 本机模拟部署,含 Dockerfile、docker-compose、deploy.sh 一键脚本 - 新增 deploy/remote/:远程服务器部署,含 SSH 自动上传、重启、回滚脚本 - 新增 deploy/README.md:完整使用手册,含现状分析、落地调整工作清单、命令速查 - 新增 build.sh/start.sh:本地构建和启动脚本(含飞书通知) - 新增前端 .env.docker 环境配置,API 指向测试服务器 - 前端 package.json 新增 build-docker 命令 - 更新 .gitignore:排除 IDE 配置、SQL 数据、Docker 敏感文件 - 前端 UI 样式优化(多个页面组件) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
33 lines
852 B
JSON
33 lines
852 B
JSON
{
|
|
"name": "witCleanSystem",
|
|
"version": "1.0.6",
|
|
"scripts": {
|
|
"dev": "vite --mode develop --open -- --host",
|
|
"build-test": "vite build --mode test",
|
|
"build-docker": "vite build --mode docker",
|
|
"build": "vite build --mode production"
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/icons-vue": "^6.0.1",
|
|
"@element-plus/icons-vue": "^1.1.1",
|
|
"@vitejs/plugin-vue": "^2.2.4",
|
|
"ant-design-vue": "^2.2.8",
|
|
"axios": "^0.26.0",
|
|
"default-passive-events": "^2.0.0",
|
|
"element-plus": "^2.0.4",
|
|
"js-md5": "^0.7.3",
|
|
"vue": "^3.0.4",
|
|
"vue-loader": "^17.0.0",
|
|
"vue-router": "^4.0.13",
|
|
"vuedraggable": "^4.1.0",
|
|
"vuex": "^4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/compiler-sfc": "^3.0.4",
|
|
"nprogress": "^0.2.0",
|
|
"sass": "^1.49.9",
|
|
"vite": "^2.8.6",
|
|
"vite-plugin-cesium": "^1.2.13"
|
|
}
|
|
}
|