34 lines
776 B
JSON
34 lines
776 B
JSON
{
|
|
"name": "vdi-web-server",
|
|
"version": "1.0.0",
|
|
"description": "VDI 管理平台前端服务器",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "nodemon index.js",
|
|
"pm2:start": "pm2 start ecosystem.config.js",
|
|
"pm2:stop": "pm2 stop vdi-web",
|
|
"pm2:restart": "pm2 restart vdi-web",
|
|
"pm2:delete": "pm2 delete vdi-web",
|
|
"pm2:logs": "pm2 logs vdi-web",
|
|
"pm2:monit": "pm2 monit"
|
|
},
|
|
"keywords": [
|
|
"vdi",
|
|
"express",
|
|
"pm2",
|
|
"frontend"
|
|
],
|
|
"author": "紫光汇智",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"compression": "^1.7.4",
|
|
"express": "^4.18.2",
|
|
"helmet": "^7.1.0",
|
|
"http-proxy-middleware": "^2.0.6",
|
|
"pm2": "^6.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
}
|
|
} |