- 新增四步向导流程,简化接线创建过程 - 添加线缆标签、颜色、安装信息等新字段 - 实现端口可视化面板和冲突检测功能 - 新增耗材日志设备关联字段 - 添加耗材导入后台任务管理 - 更新线缆管理文档和使用指南
29 lines
748 B
JSON
29 lines
748 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": {
|
|
"@ant-design/cssinjs": "^2.1.2",
|
|
"papaparse": "^5.5.3"
|
|
}
|
|
}
|