Files
yunrui_asset/package.json
T
zhang1106 2905fb4fa3 feat(install): 添加Linux安装引导脚本并优化安装/卸载流程
添加install.sh脚本支持Linux系统自动安装Node.js和依赖
优化install.js和uninstall.js脚本,增加非交互模式、健康检查、日志记录等功能
更新README.md和DEPLOYMENT.md文档,提供更详细的安装/卸载指南
在package.json中添加uninstall脚本命令
2026-03-17 14:13:22 +08:00

28 lines
711 B
JSON

{
"name": "idc-device-management",
"version": "1.0.0",
"description": "IDC设备管理系统",
"scripts": {
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && npm run dev",
"start:frontend": "cd frontend && npm run dev",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"deploy": "node install.js",
"update": "node update.js",
"uninstall": "node uninstall.js"
},
"keywords": [
"idc",
"device",
"management"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1"
},
"dependencies": {
"papaparse": "^5.5.3"
}
}