Files
yunrui_asset/package.json
T
zhang1106 755712bdb6 feat(ports): add device-grouped port list API and frontend implementation
1. 新增按设备分组的端口查询后端API,修复端口过多时部分设备不显示的分页问题
2. 重构前端端口管理页面,改为设备维度分页并移除旧的端口级分页逻辑
3. 统一端口名称自然排序逻辑,优化页面展示顺序
4. 更新部署文档中的容器目录路径
5. 升级项目所有package.json版本到2.1.1
6. 新增两个提案文档到gitignore
2026-06-17 10:21:19 +08:00

30 lines
769 B
JSON

{
"name": "idc-device-management",
"version": "2.1.1",
"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",
"all": "^0.0.0",
"papaparse": "^5.5.3"
}
}