Skip to content

Commit e8a2b30

Browse files
committed
Bump dependencies
1 parent 5b9900e commit e8a2b30

File tree

8 files changed

+220
-219
lines changed

8 files changed

+220
-219
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-alpine AS BACKEND_BUILD_IMAGE
1+
FROM node:20 AS BACKEND_BUILD_IMAGE
22
WORKDIR /app/backend
33
COPY backend/package-lock.json .
44
COPY backend/package.json .
@@ -10,7 +10,7 @@ COPY backend/tsoa.json .
1010
RUN npm run build
1111
RUN npm prune --production
1212

13-
FROM node:20-alpine AS FRONTEND_BUILD_IMAGE
13+
FROM node:20 AS FRONTEND_BUILD_IMAGE
1414
WORKDIR /app/frontend
1515
COPY frontend/package-lock.json .
1616
COPY frontend/package.json .
@@ -24,7 +24,7 @@ COPY frontend/tsconfig.json .
2424
COPY frontend/vite.config.mts .
2525
RUN npm run build
2626

27-
FROM node:20-alpine
27+
FROM node:20
2828
COPY --from=BACKEND_BUILD_IMAGE /app/backend/package.json /app/backend/swagger.json /app/backend/
2929
COPY --from=BACKEND_BUILD_IMAGE /app/backend/dist /app/backend/dist
3030
COPY --from=BACKEND_BUILD_IMAGE /app/backend/node_modules /app/backend/node_modules

backend/package-lock.json

+58-58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@
1111
"start": "node ./dist/backend/src/index.js"
1212
},
1313
"dependencies": {
14-
"@tsoa/runtime": "^6.3.0",
14+
"@tsoa/runtime": "^6.4.0",
1515
"express": "^4.19.2",
1616
"short-uuid": "^5.2.0",
1717
"steamid": "^2.0.0",
1818
"typed-emitter": "^2.1.0",
19-
"ws": "^8.17.1"
19+
"ws": "^8.18.0"
2020
},
2121
"devDependencies": {
22-
"@tsoa/cli": "^6.3.1",
22+
"@tsoa/cli": "^6.4.0",
2323
"@types/debug": "^4.1.12",
2424
"@types/express": "^4.17.21",
25-
"@types/node": "^20.14.8",
25+
"@types/node": "^22.1.0",
2626
"@types/steamid": "^2.0.3",
27-
"@types/ws": "^8.5.10",
27+
"@types/ws": "^8.5.12",
2828
"nodemon": "^3.1.4",
2929
"ts-node": "^10.9.2",
30-
"typescript": "^5.5.2"
30+
"typescript": "^5.5.4"
3131
}
3232
}

backend/src/routes.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1192,6 +1192,7 @@ export function RegisterRoutes(app: Router) {
11921192
// NOTE: If you do not see routes for all of your controllers in this file, then you might not have informed tsoa of where to look
11931193
// Please look into the "controllerPathGlobs" config option described in the readme: https://github.com/lukeautry/tsoa
11941194
// ###########################################################################################################
1195+
11951196
app.post(
11961197
'/api/login',
11971198
authenticateMiddleware([{ bearer_token: [] }]),

0 commit comments

Comments
 (0)