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

37 lines
977 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": {
"fs-extra": "^10.0.0",
2021-09-24 15:52:21 +08:00
"koa": "^2.13.3",
"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",
2021-09-28 00:56:47 +08:00
"@types/node": "^16.10.1",
2021-09-24 15:52:21 +08:00
"nodemon": "^2.0.13",
2021-09-28 00:56:47 +08:00
"pm2": "^5.1.2",
"rimraf": "^3.0.2",
2021-08-20 21:46:51 +08:00
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
2021-09-28 00:56:47 +08:00
"tsup": "^5.2.1",
2021-09-14 00:03:34 +08:00
"typescript": "^4.4.3"
}
}