Files
egret-app-template/packages/server/package.json

40 lines
986 B
JSON
Raw Normal View History

2025-08-25 17:11:15 +08:00
{
"name": "egret-app-server",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsoa -c tsoaConfig.json spec-and-routes && node scripts/clean-swagger.js && tsc && tsc-alias",
2025-09-26 17:25:58 +08:00
"serve": "yarn build && node ./build/index.js",
2025-08-25 17:11:15 +08:00
"start": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.11.0",
2025-08-25 17:11:15 +08:00
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.2",
"nocache": "^4.0.0",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7",
"tsoa": "^6.6.0",
"swagger-ui-express": "^5.0.0"
2025-08-25 17:11:15 +08:00
},
"devDependencies": {
"@types/axios": "^0.9.36",
2025-08-25 17:11:15 +08:00
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/swagger-ui-express": "^4.1.8",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0"
},
"resolutions": {
"@types/express": "^4.17.13"
}
}