update dependencies

This commit is contained in:
Philipinho 2024-06-22 03:47:42 +01:00
parent df1840cf67
commit a3b690ac50
7 changed files with 2067 additions and 1423 deletions

1
.gitignore vendored
View File

@ -35,5 +35,6 @@ lerna-debug.log*
!.vscode/launch.json
!.vscode/extensions.json
.nx
.nx/installation
.nx/cache

View File

@ -41,7 +41,6 @@
"react-router-dom": "^6.23.1",
"socket.io-client": "^4.7.5",
"tippy.js": "^6.3.7",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
@ -51,7 +50,6 @@
"@types/node": "20.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.3.0",

View File

@ -28,10 +28,10 @@
"test:e2e": "jest --config test/jest-e2e.json"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.588.0",
"@aws-sdk/s3-request-presigner": "^3.588.0",
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/s3-request-presigner": "^3.600.0",
"@casl/ability": "^6.7.1",
"@fastify/multipart": "^8.2.0",
"@fastify/multipart": "^8.3.0",
"@fastify/static": "^7.0.4",
"@nestjs/bullmq": "^10.1.1",
"@nestjs/common": "^10.3.9",
@ -49,11 +49,11 @@
"@socket.io/redis-adapter": "^8.3.0",
"@types/pg": "^8.11.6",
"bcrypt": "^5.1.1",
"bullmq": "^5.7.14",
"bullmq": "^5.8.2",
"bytes": "^3.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"fastify": "^4.27.0",
"fastify": "^4.28.0",
"fix-esm": "^1.0.1",
"fs-extra": "^11.2.0",
"kysely": "^0.27.3",
@ -61,19 +61,18 @@
"mime-types": "^2.1.35",
"nanoid": "^5.0.7",
"nestjs-kysely": "^1.0.0",
"nodemailer": "^6.9.13",
"nodemailer": "^6.9.14",
"passport-jwt": "^4.0.1",
"pg": "^8.11.5",
"pg": "^8.12.0",
"pg-tsquery": "^8.4.2",
"postmark": "^4.0.2",
"postmark": "^4.0.4",
"react": "^18.3.1",
"redis": "^4.6.14",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"sanitize-filename-ts": "^1.0.2",
"socket.io": "^4.7.5",
"uuid": "^9.0.1",
"ws": "^8.17.0"
"ws": "^8.17.1"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
@ -85,28 +84,27 @@
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.14.0",
"@types/node": "^20.14.7",
"@types/nodemailer": "^6.4.15",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.4.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"kysely-codegen": "^0.15.0",
"prettier": "^3.3.0",
"prettier": "^3.3.2",
"react-email": "^2.1.4",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
"typescript": "^5.5.2"
},
"jest": {
"moduleFileExtensions": [

View File

@ -6,4 +6,4 @@ export const nanoIdGen = customAlphabet(alphabet, 10);
const slugIdAlphabet =
'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
export const generateSlugId = customAlphabet(slugIdAlphabet, 12);
export const generateSlugId = customAlphabet(slugIdAlphabet, 10);

View File

@ -30,7 +30,7 @@ async function bootstrap() {
app.useWebSocketAdapter(redisIoAdapter);
await app.register(fastifyMultipart);
await app.register(fastifyMultipart as any);
app
.getHttpAdapter()

View File

@ -15,10 +15,10 @@
},
"dependencies": {
"@docmost/editor-ext": "workspace:*",
"@hocuspocus/extension-redis": "^2.13.0",
"@hocuspocus/provider": "^2.13.0",
"@hocuspocus/server": "^2.13.0",
"@hocuspocus/transformer": "^2.13.0",
"@hocuspocus/extension-redis": "^2.13.2",
"@hocuspocus/provider": "^2.13.2",
"@hocuspocus/server": "^2.13.2",
"@hocuspocus/transformer": "^2.13.2",
"@sindresorhus/slugify": "^2.2.1",
"@tiptap/core": "^2.4.0",
"@tiptap/extension-code-block": "^2.4.0",
@ -57,13 +57,15 @@
"cross-env": "^7.0.3",
"fractional-indexing-jittered": "^0.9.1",
"ioredis": "^5.4.1",
"uuid": "^10.0.0",
"y-indexeddb": "^9.0.12",
"yjs": "^13.6.15"
"yjs": "^13.6.18"
},
"devDependencies": {
"@nx/js": "19.1.2",
"nx": "19.1.2",
"tsx": "^4.11.2"
"@nx/js": "19.3.1",
"@types/uuid": "^10.0.0",
"nx": "19.3.1",
"tsx": "^4.15.7"
},
"workspaces": {
"packages": [

3431
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff