2
1
mirror of https://github.com/Thream/file-uploads-api.git synced 2024-07-04 03:40:11 +02:00

fix: update dependencies to latest

This commit is contained in:
Théo LUDWIG 2023-09-18 22:28:52 +02:00
parent 92b184630b
commit dc2ca44311
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
7 changed files with 615 additions and 416 deletions

View File

@ -10,7 +10,7 @@ jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3.8.1'

View File

@ -10,7 +10,7 @@ jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3.8.1'

View File

@ -8,13 +8,13 @@ jobs:
release:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'
with:
fetch-depth: 0
persist-credentials: false
- name: 'Import GPG key'
uses: 'crazy-max/ghaction-import-gpg@v5.3.0'
uses: 'crazy-max/ghaction-import-gpg@v6.0.0'
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git_user_signingkey: true

2
.swcrc
View File

@ -5,7 +5,7 @@
"syntax": "typescript",
"dynamicImport": true
},
"target": "es2022"
"target": "esnext"
},
"module": {
"type": "es6"

View File

@ -1,15 +1,15 @@
FROM node:20.5.1 AS builder-dependencies
FROM node:20.6.1 AS builder-dependencies
WORKDIR /usr/src/application
COPY ./package*.json ./
RUN npm clean-install
FROM node:20.5.1 AS runner-dependencies
FROM node:20.6.1 AS runner-dependencies
WORKDIR /usr/src/application
ENV NODE_ENV=production
COPY ./package*.json ./
RUN npm clean-install --omit=dev --ignore-scripts
FROM node:20.5.1 AS builder
FROM node:20.6.1 AS builder
WORKDIR /usr/src/application
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
COPY ./ ./

981
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -32,16 +32,16 @@
},
"dependencies": {
"@fastify/cors": "8.3.0",
"@fastify/helmet": "11.0.0",
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "7.7.3",
"@fastify/rate-limit": "8.0.3",
"@fastify/sensible": "5.2.0",
"@fastify/static": "6.10.2",
"@fastify/swagger": "8.9.0",
"@fastify/sensible": "5.3.0",
"@fastify/static": "6.11.2",
"@fastify/swagger": "8.10.0",
"@fastify/swagger-ui": "1.9.3",
"@sinclair/typebox": "0.31.2",
"@sinclair/typebox": "0.31.15",
"dotenv": "16.3.1",
"fastify": "4.21.0",
"fastify": "4.23.2",
"fastify-plugin": "4.5.1",
"http-errors": "2.0.0",
"read-pkg": "8.1.0"
@ -52,17 +52,17 @@
"@saithodev/semantic-release-backmerge": "3.2.0",
"@semantic-release/git": "10.0.1",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.78",
"@tsconfig/strictest": "2.0.1",
"@types/busboy": "1.5.0",
"@types/http-errors": "2.0.1",
"@types/node": "20.5.4",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@swc/core": "1.3.85",
"@tsconfig/strictest": "2.0.2",
"@types/busboy": "1.5.1",
"@types/http-errors": "2.0.2",
"@types/node": "20.6.2",
"@typescript-eslint/eslint-plugin": "6.7.2",
"chokidar": "3.5.3",
"concurrently": "8.2.1",
"cross-env": "7.0.3",
"editorconfig-checker": "5.1.1",
"eslint": "8.47.0",
"eslint": "8.49.0",
"eslint-config-conventions": "11.0.1",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
@ -71,11 +71,11 @@
"eslint-plugin-unicorn": "48.0.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"markdownlint-cli2": "0.8.1",
"markdownlint-cli2": "0.10.0",
"markdownlint-rule-relative-links": "2.1.0",
"prettier": "3.0.2",
"prettier": "3.0.3",
"rimraf": "5.0.1",
"semantic-release": "21.1.1",
"typescript": "5.1.6"
"semantic-release": "21.1.2",
"typescript": "5.2.2"
}
}