vue-vben-admin/tests/server/package.json

37 lines
978 B
JSON
Raw Normal View History

{
"name": "server",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "nodemon",
"build": "rimraf ./dist && tsup ./index.ts --dts --format cjs,esm ",
"prod": "npx pm2 start ecosystem.config.js --env production",
"restart": "pm2 restart ecosystem.config.js --env production",
"stop": "npx pm2 stop ecosystem.config.js"
},
"dependencies": {
2022-02-28 00:21:26 +08:00
"fs-extra": "^10.0.1",
2021-10-20 01:11:29 +08:00
"koa": "^2.13.4",
"koa-body": "^4.2.0",
2021-08-12 23:19:28 +08:00
"koa-bodyparser": "^4.3.0",
"koa-route": "^3.2.0",
2021-08-22 12:22:56 +08:00
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"koa-websocket": "^6.0.0",
"koa2-cors": "^2.0.6"
},
"devDependencies": {
2021-08-12 23:19:28 +08:00
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^5.0.2",
"@types/koa-router": "^7.4.4",
2022-02-28 00:21:26 +08:00
"@types/node": "^17.0.21",
2021-11-10 21:45:46 +08:00
"nodemon": "^2.0.15",
2022-02-28 00:21:26 +08:00
"pm2": "^5.2.0",
"rimraf": "^3.0.2",
2022-03-18 20:07:37 +08:00
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"tsup": "^5.12.1",
"typescript": "^4.6.2"
}
}