This commit is contained in:
2026-03-03 15:23:00 +00:00
parent 5e3726de39
commit 8e223bfbec
3689 changed files with 955330 additions and 1011 deletions

View File

@@ -4,9 +4,21 @@
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"generate:api": "tsoa spec-and-routes --configuration tsoa.json",
"dev": "bun run generate:api && bun --watch src/index.ts",
"start": "bun run generate:api && bun src/index.ts",
"db:seed": "bun scripts/seed.ts",
"test": "bun test"
"test": "bun run generate:api && bun test"
},
"dependencies": {
"express": "^5.2.1",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"tsoa": "^7.0.0-alpha.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/swagger-ui-express": "^4.1.8",
"node-mocks-http": "^1.17.2"
}
}