添加交互式安装脚本 install.js 和一键更新脚本 update.js 更新部署文档和 README 以支持新功能 优化数据库初始化流程和系统设置默认值
27 lines
673 B
JSON
27 lines
673 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"
|
|
},
|
|
"keywords": [
|
|
"idc",
|
|
"device",
|
|
"management"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"concurrently": "^9.2.1"
|
|
},
|
|
"dependencies": {
|
|
"papaparse": "^5.5.3"
|
|
}
|
|
}
|