36 lines
836 B
JSON
36 lines
836 B
JSON
{
|
|
"name": "auto-deploy-demo",
|
|
"version": "1.0.0",
|
|
"description": "快速发布部署简易Web系统",
|
|
"main": "server/index.js",
|
|
"scripts": {
|
|
"server": "node server/index.js",
|
|
"client": "cd client && npm run dev",
|
|
"dev": "concurrently \"npm run server\" \"npm run client\"",
|
|
"build": "cd client && npm run build",
|
|
"start": "node server/index.js"
|
|
},
|
|
"keywords": [
|
|
"deploy",
|
|
"web",
|
|
"automation"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"adm-zip": "^0.5.10",
|
|
"archiver": "^6.0.1",
|
|
"bcryptjs": "^2.4.3",
|
|
"cors": "^2.8.5",
|
|
"crypto": "^1.0.1",
|
|
"dotenv": "^17.3.1",
|
|
"express": "^4.18.2",
|
|
"http-proxy-middleware": "^3.0.5",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"multer": "^1.4.5-lts.1"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|