Files
yunrui_asset/package.json
T
zhang1106 2f00fe327c fix: 修复机柜列表API路径并更新版本号
将机柜列表API路径从'/api/racks'修改为'/api/racks/all'以获取所有机柜数据
同时将package.json中的版本号从1.0.0更新为1.0
2026-04-10 13:48:44 +08:00

29 lines
746 B
JSON

{
"name": "idc-device-management",
"version": "1.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"
}
}