fix: update dependencies to latest
This commit is contained in:
parent
2bdcae81b5
commit
5532a6a398
2
.github/workflows/analyze.yml
vendored
2
.github/workflows/analyze.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
||||
language: ['javascript']
|
||||
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.6.0'
|
||||
- uses: 'actions/checkout@v4.0.0'
|
||||
|
||||
- name: 'Initialize CodeQL'
|
||||
uses: 'github/codeql-action/init@v2'
|
||||
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -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'
|
||||
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@ -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'
|
||||
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -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
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -10,7 +10,7 @@ jobs:
|
||||
test:
|
||||
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'
|
||||
|
2
.swcrc
2
.swcrc
@ -5,7 +5,7 @@
|
||||
"syntax": "typescript",
|
||||
"dynamicImport": true
|
||||
},
|
||||
"target": "es2022"
|
||||
"target": "esnext"
|
||||
},
|
||||
"module": {
|
||||
"type": "es6"
|
||||
|
@ -1,15 +1,15 @@
|
||||
FROM node:20.5.1 AS dependencies
|
||||
FROM node:20.6.1 AS dependencies
|
||||
WORKDIR /usr/src/app
|
||||
COPY ./package*.json ./
|
||||
RUN npm clean-install
|
||||
|
||||
FROM node:20.5.1 AS builder
|
||||
FROM node:20.6.1 AS builder
|
||||
WORKDIR /usr/src/app
|
||||
COPY --from=dependencies /usr/src/app/node_modules ./node_modules
|
||||
COPY ./ ./
|
||||
RUN npm run prisma:generate && npm run build
|
||||
|
||||
FROM node:20.5.1 AS runner
|
||||
FROM node:20.6.1 AS runner
|
||||
WORKDIR /usr/src/app
|
||||
ENV NODE_ENV=production
|
||||
ENV NODE_OPTIONS=--enable-source-maps
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
Thream's Application Programming Interface (API) to stay close with your friends and communities.
|
||||
|
||||
It uses [Thream/file-uploads-api](https://github.com/Thream/file-uploads-api) [v1.1.6](https://github.com/Thream/file-uploads-api/releases/tag/v1.1.6).
|
||||
It uses [Thream/file-uploads-api](https://github.com/Thream/file-uploads-api) [v1.1.7](https://github.com/Thream/file-uploads-api/releases/tag/v1.1.7).
|
||||
|
||||
## ⚙️ Getting Started
|
||||
|
||||
|
1608
package-lock.json
generated
1608
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
54
package.json
54
package.json
@ -41,26 +41,26 @@
|
||||
},
|
||||
"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/swagger": "8.9.0",
|
||||
"@fastify/sensible": "5.3.0",
|
||||
"@fastify/swagger": "8.10.0",
|
||||
"@fastify/swagger-ui": "1.9.3",
|
||||
"@prisma/client": "5.2.0",
|
||||
"@sinclair/typebox": "0.31.2",
|
||||
"@thream/socketio-jwt": "3.1.2",
|
||||
"axios": "1.4.0",
|
||||
"@prisma/client": "5.3.1",
|
||||
"@sinclair/typebox": "0.31.15",
|
||||
"@thream/socketio-jwt": "3.1.3",
|
||||
"axios": "1.5.0",
|
||||
"bcryptjs": "2.4.3",
|
||||
"dotenv": "16.3.1",
|
||||
"ejs": "3.1.9",
|
||||
"fastify": "4.21.0",
|
||||
"fastify": "4.23.2",
|
||||
"fastify-plugin": "4.5.1",
|
||||
"form-data": "4.0.0",
|
||||
"http-errors": "2.0.0",
|
||||
"jsonwebtoken": "9.0.1",
|
||||
"jsonwebtoken": "9.0.2",
|
||||
"ms": "2.1.3",
|
||||
"nodemailer": "6.9.4",
|
||||
"nodemailer": "6.9.5",
|
||||
"read-pkg": "8.1.0",
|
||||
"socket.io": "4.7.2"
|
||||
},
|
||||
@ -70,24 +70,24 @@
|
||||
"@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/bcryptjs": "2.4.2",
|
||||
"@types/busboy": "1.5.0",
|
||||
"@swc/core": "1.3.85",
|
||||
"@tsconfig/strictest": "2.0.2",
|
||||
"@types/bcryptjs": "2.4.4",
|
||||
"@types/busboy": "1.5.1",
|
||||
"@types/ejs": "3.1.2",
|
||||
"@types/http-errors": "2.0.1",
|
||||
"@types/jsonwebtoken": "9.0.2",
|
||||
"@types/http-errors": "2.0.2",
|
||||
"@types/jsonwebtoken": "9.0.3",
|
||||
"@types/ms": "0.7.31",
|
||||
"@types/node": "20.5.4",
|
||||
"@types/nodemailer": "6.4.9",
|
||||
"@types/node": "20.6.2",
|
||||
"@types/nodemailer": "6.4.10",
|
||||
"@types/sinon": "10.0.16",
|
||||
"@typescript-eslint/eslint-plugin": "6.4.1",
|
||||
"@typescript-eslint/parser": "6.4.1",
|
||||
"@typescript-eslint/eslint-plugin": "6.7.2",
|
||||
"@typescript-eslint/parser": "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",
|
||||
@ -97,14 +97,14 @@
|
||||
"husky": "8.0.3",
|
||||
"lint-staged": "14.0.1",
|
||||
"maildev": "2.1.0",
|
||||
"markdownlint-cli2": "0.8.1",
|
||||
"markdownlint-cli2": "0.10.0",
|
||||
"markdownlint-rule-relative-links": "2.1.0",
|
||||
"plop": "3.1.2",
|
||||
"prettier": "3.0.2",
|
||||
"prisma": "5.2.0",
|
||||
"plop": "4.0.0",
|
||||
"prettier": "3.0.3",
|
||||
"prisma": "5.3.1",
|
||||
"rimraf": "5.0.1",
|
||||
"semantic-release": "21.1.1",
|
||||
"sinon": "15.2.0",
|
||||
"typescript": "5.1.6"
|
||||
"sinon": "16.0.0",
|
||||
"typescript": "5.2.2"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user