fix(test-server): test-server can not lanuch (#3554)

This commit is contained in:
xachary
2024-01-19 09:34:18 +08:00
committed by GitHub
parent 2c121edd3d
commit e6797043c5

View File

@@ -2,13 +2,12 @@
"name": "server",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"compile": "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",
"prod": "npx pm2 start ecosystem.config.cjs --env production",
"restart": "pm2 restart ecosystem.config.cjs --env production",
"start": "nodemon",
"stop": "npx pm2 stop ecosystem.config.js"
"stop": "npx pm2 stop ecosystem.config.cjs"
},
"dependencies": {
"fs-extra": "^11.1.1",