From cd74e707ba0eed6866bb7b84a7ef4405e37039fb Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Thu, 19 Jan 2023 07:33:15 +0100 Subject: [PATCH] update dependencies --- client/package.json | 30 +- client/services/axios.ts | 7 +- package.json | 14 +- pnpm-lock.yaml | 916 +++++++++++++++++++++++---------------- schema/package.json | 2 +- server/package.json | 12 +- 6 files changed, 577 insertions(+), 404 deletions(-) diff --git a/client/package.json b/client/package.json index 327c5e1f..0af730f4 100644 --- a/client/package.json +++ b/client/package.json @@ -17,13 +17,13 @@ "@hookform/resolvers": "2.9.10", "@monaco-editor/react": "^4.4.6", "@mui/icons-material": "^5.11.0", - "@mui/lab": "^5.0.0-alpha.114", - "@mui/material": "^5.11.3", - "@mui/system": "^5.11.2", - "@mui/x-date-pickers": "5.0.12", - "@react-oauth/google": "^0.5.1", + "@mui/lab": "^5.0.0-alpha.116", + "@mui/material": "^5.11.5", + "@mui/system": "^5.11.5", + "@mui/x-date-pickers": "5.0.14", + "@react-oauth/google": "^0.6.0", "@reduxjs/toolkit": "^1.9.1", - "axios": "^1.2.2", + "axios": "^1.2.3", "clsx": "^1.2.1", "dayjs": "^1.11.7", "downloadjs": "^1.4.7", @@ -32,20 +32,20 @@ "md5-hex": "^4.0.0", "monaco-editor": "^0.34.1", "nanoid": "3.3.4", - "next": "13.1.1", + "next": "13.1.2", "next-i18next": "^13.0.3", "react": "^18.2.0", "react-colorful": "^5.6.1", "react-dnd": "16.0.1", "react-dnd-html5-backend": "16.0.1", "react-dom": "^18.2.0", - "react-hook-form": "^7.41.5", + "react-hook-form": "^7.42.1", "react-hot-toast": "2.4.0", "react-icons": "^4.7.1", - "react-markdown": "^8.0.4", + "react-markdown": "^8.0.5", "react-query": "^3.39.2", "react-redux": "^8.0.5", - "react-zoom-pan-pinch": "^2.1.3", + "react-zoom-pan-pinch": "^2.2.0", "redux": "^4.2.0", "redux-persist": "^6.0.0", "redux-saga": "^1.2.2", @@ -60,22 +60,22 @@ "devDependencies": { "@babel/core": "^7.20.12", "@reactive-resume/schema": "workspace:*", - "@tailwindcss/typography": "^0.5.8", + "@tailwindcss/typography": "^0.5.9", "@types/downloadjs": "^1.4.3", "@types/lodash": "^4.14.191", "@types/node": "^18.11.18", - "@types/react": "^18.0.26", + "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "@types/react-redux": "^7.1.25", "@types/uuid": "^9.0.0", "@types/webfontloader": "^1.6.35", "autoprefixer": "^10.4.13", "csstype": "^3.1.1", - "eslint-config-next": "^13.1.1", + "eslint-config-next": "^13.1.2", "eslint-plugin-tailwindcss": "^3.8.0", "eslint-plugin-unused-imports": "^2.0.0", - "next-sitemap": "^3.1.44", - "postcss": "^8.4.20", + "next-sitemap": "^3.1.45", + "postcss": "^8.4.21", "sass": "^1.57.1", "tailwindcss": "^3.2.4", "typescript": "^4.9.4" diff --git a/client/services/axios.ts b/client/services/axios.ts index 08d37579..5b892524 100644 --- a/client/services/axios.ts +++ b/client/services/axios.ts @@ -1,5 +1,5 @@ import env from '@beam-australia/react-env'; -import _axios, { AxiosError, RawAxiosRequestHeaders } from 'axios'; +import _axios, { AxiosError } from 'axios'; import Router from 'next/router'; import { toast } from 'react-hot-toast'; @@ -20,10 +20,7 @@ const axios = _axios.create({ baseURL }); axios.interceptors.request.use((config) => { const { accessToken } = store.getState().auth; - config.headers = { - ...(config.headers as RawAxiosRequestHeaders), - Authorization: `Bearer ${accessToken}`, - }; + config.headers.set('Authorization', `Bearer ${accessToken}`); return config; }); diff --git a/package.json b/package.json index f78dc7f3..27d3ea29 100644 --- a/package.json +++ b/package.json @@ -20,18 +20,18 @@ "cross-env": "^7.0.3", "cross-var": "^1.1.0", "env-cmd": "^10.1.0", - "turbo": "^1.6.3", + "turbo": "^1.7.0", "uuid": "^9.0.0" }, "devDependencies": { "@types/node": "^18.11.18", - "@typescript-eslint/eslint-plugin": "^5.48.0", - "@typescript-eslint/parser": "^5.48.0", - "eslint": "^8.31.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-simple-import-sort": "^8.0.0", + "@typescript-eslint/eslint-plugin": "^5.48.2", + "@typescript-eslint/parser": "^5.48.2", + "eslint": "^8.32.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-simple-import-sort": "^9.0.0", "npm-check-updates": "^16.6.2", - "prettier": "^2.8.1", + "prettier": "^2.8.3", "ts-node": "^10.9.1", "typescript": "^4.9.4" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 61bea2ba..456066bd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,35 +9,35 @@ importers: .: specifiers: '@types/node': ^18.11.18 - '@typescript-eslint/eslint-plugin': ^5.48.0 - '@typescript-eslint/parser': ^5.48.0 + '@typescript-eslint/eslint-plugin': ^5.48.2 + '@typescript-eslint/parser': ^5.48.2 cross-env: ^7.0.3 cross-var: ^1.1.0 env-cmd: ^10.1.0 - eslint: ^8.31.0 - eslint-plugin-import: ^2.26.0 - eslint-plugin-simple-import-sort: ^8.0.0 + eslint: ^8.32.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-simple-import-sort: ^9.0.0 npm-check-updates: ^16.6.2 - prettier: ^2.8.1 + prettier: ^2.8.3 ts-node: ^10.9.1 - turbo: ^1.6.3 + turbo: ^1.7.0 typescript: ^4.9.4 uuid: ^9.0.0 dependencies: cross-env: 7.0.3 cross-var: 1.1.0 env-cmd: 10.1.0 - turbo: 1.6.3 + turbo: 1.7.0 uuid: 9.0.0 devDependencies: '@types/node': 18.11.18 - '@typescript-eslint/eslint-plugin': 5.48.0_k73wpmdolxikpyqun3p36akaaq - '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe - eslint: 8.31.0 - eslint-plugin-import: 2.26.0_m2kn7xiag5lymyarkgri27ztxm - eslint-plugin-simple-import-sort: 8.0.0_eslint@8.31.0 + '@typescript-eslint/eslint-plugin': 5.48.2_caon6io6stgpr7lz2rtbhekxqy + '@typescript-eslint/parser': 5.48.2_7uibuqfxkfaozanbtbziikiqje + eslint: 8.32.0 + eslint-plugin-import: 2.27.5_2l6piu6guil2f63lj3qmhzbnn4 + eslint-plugin-simple-import-sort: 9.0.0_eslint@8.32.0 npm-check-updates: 16.6.2 - prettier: 2.8.1 + prettier: 2.8.3 ts-node: 10.9.1_awa2wsr5thmg3i7jqycphctjfq typescript: 4.9.4 @@ -53,14 +53,14 @@ importers: '@hookform/resolvers': 2.9.10 '@monaco-editor/react': ^4.4.6 '@mui/icons-material': ^5.11.0 - '@mui/lab': ^5.0.0-alpha.114 - '@mui/material': ^5.11.3 - '@mui/system': ^5.11.2 - '@mui/x-date-pickers': 5.0.12 - '@react-oauth/google': ^0.5.1 + '@mui/lab': ^5.0.0-alpha.116 + '@mui/material': ^5.11.5 + '@mui/system': ^5.11.5 + '@mui/x-date-pickers': 5.0.14 + '@react-oauth/google': ^0.6.0 '@reactive-resume/schema': workspace:* '@reduxjs/toolkit': ^1.9.1 - '@tailwindcss/typography': ^0.5.8 + '@tailwindcss/typography': ^0.5.9 '@types/downloadjs': ^1.4.3 '@types/lodash': ^4.14.191 '@types/node': ^18.11.18 @@ -70,12 +70,12 @@ importers: '@types/uuid': ^9.0.0 '@types/webfontloader': ^1.6.35 autoprefixer: ^10.4.13 - axios: ^1.2.2 + axios: ^1.2.3 clsx: ^1.2.1 csstype: ^3.1.1 dayjs: ^1.11.7 downloadjs: ^1.4.7 - eslint-config-next: ^13.1.1 + eslint-config-next: ^13.1.2 eslint-plugin-tailwindcss: ^3.8.0 eslint-plugin-unused-imports: ^2.0.0 joi: ^17.7.0 @@ -83,22 +83,22 @@ importers: md5-hex: ^4.0.0 monaco-editor: ^0.34.1 nanoid: 3.3.4 - next: 13.1.1 + next: 13.1.2 next-i18next: ^13.0.3 - next-sitemap: ^3.1.44 - postcss: ^8.4.20 + next-sitemap: ^3.1.45 + postcss: ^8.4.21 react: ^18.2.0 react-colorful: ^5.6.1 react-dnd: 16.0.1 react-dnd-html5-backend: 16.0.1 react-dom: ^18.2.0 - react-hook-form: ^7.41.5 + react-hook-form: ^7.42.1 react-hot-toast: 2.4.0 react-icons: ^4.7.1 - react-markdown: ^8.0.4 + react-markdown: ^8.0.5 react-query: ^3.39.2 react-redux: ^8.0.5 - react-zoom-pan-pinch: ^2.1.3 + react-zoom-pan-pinch: ^2.2.0 redux: ^4.2.0 redux-persist: ^6.0.0 redux-saga: ^1.2.2 @@ -119,16 +119,16 @@ importers: '@emotion/react': 11.10.5_xsiwufliuohuftfflaac7ytfjq '@emotion/styled': 11.10.5_zy6ooirjq7hc4csu4yvgz4j3jq '@hello-pangea/dnd': 16.2.0_itztagxbudv7qpjmcixvw7qcxu - '@hookform/resolvers': 2.9.10_react-hook-form@7.41.5 + '@hookform/resolvers': 2.9.10_react-hook-form@7.42.1 '@monaco-editor/react': 4.4.6_6vrjaj6ridxbohi43n7zt4gn7q - '@mui/icons-material': 5.11.0_dq62x5bp3duf4e3ksd6igggyfe - '@mui/lab': 5.0.0-alpha.114_dbi4usuio23adpjgnme2ycpcbi - '@mui/material': 5.11.3_xzmje33rig364cbj43xp3ygiuq - '@mui/system': 5.11.2_j3jabumvycmrdiobmx2xqyhqry - '@mui/x-date-pickers': 5.0.12_keijrcmsnr7xxc3hk5sxt6vz5m - '@react-oauth/google': 0.5.1_biqbaboplfbrettd7655fr4n2y + '@mui/icons-material': 5.11.0_pmrpbylecpvkatccjsgphgh6mq + '@mui/lab': 5.0.0-alpha.116_2yiw3cvfmpchika5ilynltybxm + '@mui/material': 5.11.5_xzmje33rig364cbj43xp3ygiuq + '@mui/system': 5.11.5_j3jabumvycmrdiobmx2xqyhqry + '@mui/x-date-pickers': 5.0.14_6iihjhvbswr7q6eezau67wjxne + '@react-oauth/google': 0.6.0_biqbaboplfbrettd7655fr4n2y '@reduxjs/toolkit': 1.9.1_k4ae6lp43ej6mezo3ztvx6pykq - axios: 1.2.2 + axios: 1.2.3 clsx: 1.2.1 dayjs: 1.11.7 downloadjs: 1.4.7 @@ -137,20 +137,20 @@ importers: md5-hex: 4.0.0 monaco-editor: 0.34.1 nanoid: 3.3.4 - next: 13.1.1_23e7ztf2chqi3ri6onem3l5mii - next-i18next: 13.0.3_n265y3gumow5fma3xmih3e4nam + next: 13.1.2_23e7ztf2chqi3ri6onem3l5mii + next-i18next: 13.0.3_6cq7whng7i6ofg3nyhcmx36bz4 react: 18.2.0 react-colorful: 5.6.1_biqbaboplfbrettd7655fr4n2y react-dnd: 16.0.1_aiksqwolgqinxtudznqajp7otm react-dnd-html5-backend: 16.0.1 react-dom: 18.2.0_react@18.2.0 - react-hook-form: 7.41.5_react@18.2.0 + react-hook-form: 7.42.1_react@18.2.0 react-hot-toast: 2.4.0_owo25xnefcwdq3zjgtohz6dbju react-icons: 4.7.1_react@18.2.0 - react-markdown: 8.0.4_akgelr6b34ghs4njbbtjaykm7q + react-markdown: 8.0.5_akgelr6b34ghs4njbbtjaykm7q react-query: 3.39.2_biqbaboplfbrettd7655fr4n2y react-redux: 8.0.5_lrrxttao3wopjqrq3rb42rpopq - react-zoom-pan-pinch: 2.1.3_biqbaboplfbrettd7655fr4n2y + react-zoom-pan-pinch: 2.2.0_biqbaboplfbrettd7655fr4n2y redux: 4.2.0 redux-persist: 6.0.0_react@18.2.0+redux@4.2.0 redux-saga: 1.2.2 @@ -164,7 +164,7 @@ importers: devDependencies: '@babel/core': 7.20.12 '@reactive-resume/schema': link:../schema - '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 + '@tailwindcss/typography': 0.5.9_tailwindcss@3.2.4 '@types/downloadjs': 1.4.3 '@types/lodash': 4.14.191 '@types/node': 18.11.18 @@ -173,28 +173,28 @@ importers: '@types/react-redux': 7.1.25 '@types/uuid': 9.0.0 '@types/webfontloader': 1.6.35 - autoprefixer: 10.4.13_postcss@8.4.20 + autoprefixer: 10.4.13_postcss@8.4.21 csstype: 3.1.1 - eslint-config-next: 13.1.1_iukboom6ndih5an6iafl45j2fe + eslint-config-next: 13.1.2_7uibuqfxkfaozanbtbziikiqje eslint-plugin-tailwindcss: 3.8.0 - eslint-plugin-unused-imports: 2.0.0_eslint@8.31.0 - next-sitemap: 3.1.44_syentjjt63dukspj2zj7hzem6y - postcss: 8.4.20 + eslint-plugin-unused-imports: 2.0.0_eslint@8.32.0 + next-sitemap: 3.1.45_qzmmcn6byxg2j2hy7c3csxpwzm + postcss: 8.4.21 sass: 1.57.1 - tailwindcss: 3.2.4_postcss@8.4.20 + tailwindcss: 3.2.4_postcss@8.4.21 typescript: 4.9.4 schema: specifiers: - eslint: ^8.31.0 + eslint: ^8.32.0 typescript: ^4.9.4 devDependencies: - eslint: 8.31.0 + eslint: 8.32.0 typescript: 4.9.4 server: specifiers: - '@aws-sdk/client-s3': ^3.241.0 + '@aws-sdk/client-s3': ^3.252.0 '@nestjs/axios': ^1.0.1 '@nestjs/cli': ^9.1.8 '@nestjs/common': ^9.2.1 @@ -219,7 +219,7 @@ importers: '@types/nodemailer': ^6.4.7 '@types/passport': ^1.0.11 '@types/passport-jwt': ^3.0.8 - '@types/passport-local': ^1.0.34 + '@types/passport-local': ^1.0.35 '@types/uuid': ^9.0.0 bcryptjs: ^2.4.3 cache-manager: ^5.1.4 @@ -234,16 +234,16 @@ importers: multer: ^1.4.5-lts.1 nanoid: 3.3.4 node-stream-zip: ^1.15.0 - nodemailer: ^6.8.0 + nodemailer: ^6.9.0 passport: ^0.6.0 passport-jwt: ^4.0.1 passport-local: ^1.0.0 pdf-lib: ^1.17.1 pg: ^8.8.0 - playwright-chromium: ^1.29.1 - prettier: ^2.8.1 + playwright-chromium: ^1.29.2 + prettier: ^2.8.3 reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 + rimraf: ^4.1.1 rxjs: ^7.8.0 source-map-support: ^0.5.21 ts-loader: ^9.4.2 @@ -254,7 +254,7 @@ importers: uuid: ^9.0.0 webpack: ^5.75.0 dependencies: - '@aws-sdk/client-s3': 3.241.0 + '@aws-sdk/client-s3': 3.252.0 '@nestjs/axios': 1.0.1_b4pxbpa7chblgbyake5iz5rdmu '@nestjs/common': 9.2.1_ejiytz4fx4ylq3bdj4qtav6mje '@nestjs/config': 2.2.0_b4pxbpa7chblgbyake5iz5rdmu @@ -281,15 +281,15 @@ importers: multer: 1.4.5-lts.1 nanoid: 3.3.4 node-stream-zip: 1.15.0 - nodemailer: 6.8.0 + nodemailer: 6.9.0 passport: 0.6.0 passport-jwt: 4.0.1 passport-local: 1.0.0 pdf-lib: 1.17.1 pg: 8.8.0 - playwright-chromium: 1.29.1 + playwright-chromium: 1.29.2 reflect-metadata: 0.1.13 - rimraf: 3.0.2 + rimraf: 4.1.1 rxjs: 7.8.0 typeorm: 0.3.11_pg@8.8.0+ts-node@10.9.1 uuid: 9.0.0 @@ -305,9 +305,9 @@ importers: '@types/node': 18.11.18 '@types/nodemailer': 6.4.7 '@types/passport-jwt': 3.0.8 - '@types/passport-local': 1.0.34 + '@types/passport-local': 1.0.35 '@types/uuid': 9.0.0 - prettier: 2.8.1 + prettier: 2.8.3 source-map-support: 0.5.21 ts-loader: 9.4.2_3fkjkrd3audxnith3e7fo4fnxi ts-node: 10.9.1_awa2wsr5thmg3i7jqycphctjfq @@ -487,16 +487,16 @@ packages: tslib: 2.4.1 dev: false - /@aws-sdk/client-s3/3.241.0: - resolution: {integrity: sha512-GxkiX4f+FUW2Lr3PySc1wuYlfU8QV2nx6KlBY8L8yf2txtajEL0/hhfo5Pbo4Uw1ZZlTv4iPHUOiTrm2R9Rhyg==} + /@aws-sdk/client-s3/3.252.0: + resolution: {integrity: sha512-VsTDuztgrwwBnkTZKm3t3cyXNTnWRCxDN4fCeEabw8/GB6KKSrs1a9pYXyWXuXtuvV5lFG4tIZMcXF7UkVXqyg==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha1-browser': 2.0.0 '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/client-sts': 3.241.0 + '@aws-sdk/client-sts': 3.252.0 '@aws-sdk/config-resolver': 3.234.0 - '@aws-sdk/credential-provider-node': 3.241.0 + '@aws-sdk/credential-provider-node': 3.252.0 '@aws-sdk/eventstream-serde-browser': 3.226.0 '@aws-sdk/eventstream-serde-config-resolver': 3.226.0 '@aws-sdk/eventstream-serde-node': 3.226.0 @@ -534,7 +534,7 @@ packages: '@aws-sdk/util-body-length-node': 3.208.0 '@aws-sdk/util-defaults-mode-browser': 3.234.0 '@aws-sdk/util-defaults-mode-node': 3.234.0 - '@aws-sdk/util-endpoints': 3.241.0 + '@aws-sdk/util-endpoints': 3.245.0 '@aws-sdk/util-retry': 3.229.0 '@aws-sdk/util-stream-browser': 3.226.0 '@aws-sdk/util-stream-node': 3.226.0 @@ -551,8 +551,8 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sso-oidc/3.241.0: - resolution: {integrity: sha512-/Ml2QBGpGfUEeBrPzBZhSTBkHuXFD2EAZEIHGCBH4tKaURDI6/FoGI8P1Rl4BzoFt+II/Cr91Eox6YT9EwChsQ==} + /@aws-sdk/client-sso-oidc/3.252.0: + resolution: {integrity: sha512-OOwfEXFS+UliGZorEleARsXXUp3ObZSXo9/YY+8XF7/8froAqYjKCEi0tflghgYlh7d6qe7wzD7/6gDL1a/qgA==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 @@ -581,7 +581,7 @@ packages: '@aws-sdk/util-body-length-node': 3.208.0 '@aws-sdk/util-defaults-mode-browser': 3.234.0 '@aws-sdk/util-defaults-mode-node': 3.234.0 - '@aws-sdk/util-endpoints': 3.241.0 + '@aws-sdk/util-endpoints': 3.245.0 '@aws-sdk/util-retry': 3.229.0 '@aws-sdk/util-user-agent-browser': 3.226.0 '@aws-sdk/util-user-agent-node': 3.226.0 @@ -592,8 +592,8 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sso/3.241.0: - resolution: {integrity: sha512-Jm4HR+RYAqKMEYZvvWaq0NYUKKonyInOeubObXH4BLXZpmUBSdYCSjjLdNJY3jkQoxbDVPVMIurVNh5zT5SMRw==} + /@aws-sdk/client-sso/3.252.0: + resolution: {integrity: sha512-VgBqJvvCU4y9zAHJwYj5nOeNGcCxKdCO4edUxWQVHcpLsVWu49maOVtWuteq9MOrHYeWfQi8bVWGt8MPvv9+bA==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 @@ -622,7 +622,7 @@ packages: '@aws-sdk/util-body-length-node': 3.208.0 '@aws-sdk/util-defaults-mode-browser': 3.234.0 '@aws-sdk/util-defaults-mode-node': 3.234.0 - '@aws-sdk/util-endpoints': 3.241.0 + '@aws-sdk/util-endpoints': 3.245.0 '@aws-sdk/util-retry': 3.229.0 '@aws-sdk/util-user-agent-browser': 3.226.0 '@aws-sdk/util-user-agent-node': 3.226.0 @@ -633,14 +633,14 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sts/3.241.0: - resolution: {integrity: sha512-vmlG8cJzRf8skCtTJbA2wBvD2c3NQ5gZryzJvTKDS06KzBzcEpnjlLseuTekcnOiRNekbFUX5hRu5Zj3N2ReLg==} + /@aws-sdk/client-sts/3.252.0: + resolution: {integrity: sha512-wzfsWOlDFLdmeML8R7DUJWGl9wcRKf2uiunfB1aWzpdlgms0Z7FkHWgkDYHjCPyYHL6EBm84ajGl1UkE7AcmqQ==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 '@aws-sdk/config-resolver': 3.234.0 - '@aws-sdk/credential-provider-node': 3.241.0 + '@aws-sdk/credential-provider-node': 3.252.0 '@aws-sdk/fetch-http-handler': 3.226.0 '@aws-sdk/hash-node': 3.226.0 '@aws-sdk/invalid-dependency': 3.226.0 @@ -666,7 +666,7 @@ packages: '@aws-sdk/util-body-length-node': 3.208.0 '@aws-sdk/util-defaults-mode-browser': 3.234.0 '@aws-sdk/util-defaults-mode-node': 3.234.0 - '@aws-sdk/util-endpoints': 3.241.0 + '@aws-sdk/util-endpoints': 3.245.0 '@aws-sdk/util-retry': 3.229.0 '@aws-sdk/util-user-agent-browser': 3.226.0 '@aws-sdk/util-user-agent-node': 3.226.0 @@ -709,14 +709,14 @@ packages: tslib: 2.4.1 dev: false - /@aws-sdk/credential-provider-ini/3.241.0: - resolution: {integrity: sha512-CI+mu6h74Kzmscw35TvNkc/wYHsHPGAwP7humSHoWw53H9mVw21Ggft/dT1iFQQZWQ8BNXkzuXlNo1IlqwMgOA==} + /@aws-sdk/credential-provider-ini/3.252.0: + resolution: {integrity: sha512-OfpU8xMYK7+6XQ2dUO4rN0gUhhb/ZLV7iwSL6Ji2pI9gglGhKdOSfmbn6fBfCB50kzWZRNoiQJVaBu/d0Kr0EQ==} engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/credential-provider-env': 3.226.0 '@aws-sdk/credential-provider-imds': 3.226.0 '@aws-sdk/credential-provider-process': 3.226.0 - '@aws-sdk/credential-provider-sso': 3.241.0 + '@aws-sdk/credential-provider-sso': 3.252.0 '@aws-sdk/credential-provider-web-identity': 3.226.0 '@aws-sdk/property-provider': 3.226.0 '@aws-sdk/shared-ini-file-loader': 3.226.0 @@ -726,15 +726,15 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-node/3.241.0: - resolution: {integrity: sha512-08zPQcD5o9brQmzEipWHeHgU85aQcEF8MWLfpeyjO6e1/l7ysQ35NsS+PYtv77nLpGCx/X+ZuW/KXWoRrbw77w==} + /@aws-sdk/credential-provider-node/3.252.0: + resolution: {integrity: sha512-Jt854JnB7izkJ/gb3S0hBFqAQPUNUP3eL8gXX2uqk9A9bQFQdS57/Ci0FXaEPwOXzJwAAPazD8dTf6HXMhnm3w==} engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/credential-provider-env': 3.226.0 '@aws-sdk/credential-provider-imds': 3.226.0 - '@aws-sdk/credential-provider-ini': 3.241.0 + '@aws-sdk/credential-provider-ini': 3.252.0 '@aws-sdk/credential-provider-process': 3.226.0 - '@aws-sdk/credential-provider-sso': 3.241.0 + '@aws-sdk/credential-provider-sso': 3.252.0 '@aws-sdk/credential-provider-web-identity': 3.226.0 '@aws-sdk/property-provider': 3.226.0 '@aws-sdk/shared-ini-file-loader': 3.226.0 @@ -754,14 +754,14 @@ packages: tslib: 2.4.1 dev: false - /@aws-sdk/credential-provider-sso/3.241.0: - resolution: {integrity: sha512-6Bjd6eEIrVomRTrPrM4dlxusQm+KMJ9hLYKECCpFkwDKIK+pTgZNLRtQdalHyzwneHJPdimrm8cOv1kUQ8hPoA==} + /@aws-sdk/credential-provider-sso/3.252.0: + resolution: {integrity: sha512-2JGoojMOBjG9/DenctEszjdPechq0uDTpH5nx+z1xxIAugA5+HYG/ncNfpwhmUBCrnOxpRaQViTNqXddEPHlAg==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/client-sso': 3.241.0 + '@aws-sdk/client-sso': 3.252.0 '@aws-sdk/property-provider': 3.226.0 '@aws-sdk/shared-ini-file-loader': 3.226.0 - '@aws-sdk/token-providers': 3.241.0 + '@aws-sdk/token-providers': 3.252.0 '@aws-sdk/types': 3.226.0 tslib: 2.4.1 transitivePeerDependencies: @@ -1152,11 +1152,11 @@ packages: tslib: 2.4.1 dev: false - /@aws-sdk/token-providers/3.241.0: - resolution: {integrity: sha512-79okvuOS7V559OIL/RalIPG98wzmWxeFOChFnbEjn2pKOyGQ6FJRwLPYZaVRtNdAtnkBNgRpmFq9dX843QxhtQ==} + /@aws-sdk/token-providers/3.252.0: + resolution: {integrity: sha512-xi3pUP31tyKF4lJFCOgtkwSWESE9W1vE23Vybsq53wzXEYfnRql8RP+C9FFkUouAR6ixPHEcEYplB+l92CY49g==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/client-sso-oidc': 3.241.0 + '@aws-sdk/client-sso-oidc': 3.252.0 '@aws-sdk/property-provider': 3.226.0 '@aws-sdk/shared-ini-file-loader': 3.226.0 '@aws-sdk/types': 3.226.0 @@ -1245,8 +1245,8 @@ packages: tslib: 2.4.1 dev: false - /@aws-sdk/util-endpoints/3.241.0: - resolution: {integrity: sha512-jVf8bKrN22Ey0xLmj75sL7EUvm5HFpuOMkXsZkuXycKhCwLBcEUWlvtJYtRjOU1zScPQv9GMJd2QXQglp34iOQ==} + /@aws-sdk/util-endpoints/3.245.0: + resolution: {integrity: sha512-UNOFquB1tKx+8RT8n82Zb5tIwDyZHVPBg/m0LB0RsLETjr6krien5ASpqWezsXKIR1hftN9uaxN4bvf2dZrWHg==} engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/types': 3.226.0 @@ -1863,12 +1863,12 @@ packages: - react-native dev: false - /@hookform/resolvers/2.9.10_react-hook-form@7.41.5: + /@hookform/resolvers/2.9.10_react-hook-form@7.42.1: resolution: {integrity: sha512-JIL1DgJIlH9yuxcNGtyhsWX/PgNltz+5Gr6+8SX9fhXc/hPbEIk6wPI82nhgvp3uUb6ZfAM5mqg/x7KR7NAb+A==} peerDependencies: react-hook-form: ^7.0.0 dependencies: - react-hook-form: 7.41.5_react@18.2.0 + react-hook-form: 7.42.1_react@18.2.0 dev: false /@humanwhocodes/config-array/0.11.8: @@ -1959,8 +1959,8 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@mui/base/5.0.0-alpha.112_5zfva2lldyu7jrbrwroiixp6xm: - resolution: {integrity: sha512-KPwb1iYPXsV/P8uu0SNQrj7v7YU6wdN4Eccc2lZQyRDW+f6PJYjHBuFUTYKc408B98Jvs1XbC/z5MN45a2DWrQ==} + /@mui/base/5.0.0-alpha.114_5zfva2lldyu7jrbrwroiixp6xm: + resolution: {integrity: sha512-ZpsG2I+zTOAnVTj3Un7TxD2zKRA2OhEPGMcWs/9ylPlS6VuGQSXowPooZiqarjT7TZ0+1bOe8titk/t8dLFiGw==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -1983,11 +1983,11 @@ packages: react-is: 18.2.0 dev: false - /@mui/core-downloads-tracker/5.11.3: - resolution: {integrity: sha512-Bgb6//KtxY7IC7M5Pa5RKFX1wttc213mqpKqydnz3wn4BGDXfA5c0vf5nTu5zqsJeB4T3ysAJTRJhQ/E1GsZDQ==} + /@mui/core-downloads-tracker/5.11.5: + resolution: {integrity: sha512-MIuWGjitOsugpRhp64CQY3ZEVMIu9M/L9ioql6QLSkz73+bGIlC9FEhfi670/GZ8pQIIGmtiGGwofYzlwEWjig==} dev: false - /@mui/icons-material/5.11.0_dq62x5bp3duf4e3ksd6igggyfe: + /@mui/icons-material/5.11.0_pmrpbylecpvkatccjsgphgh6mq: resolution: {integrity: sha512-I2LaOKqO8a0xcLGtIozC9xoXjZAto5G5gh0FYUMAlbsIHNHIjn4Xrw9rvjY20vZonyiGrZNMAlAXYkY6JvhF6A==} engines: {node: '>=12.0.0'} peerDependencies: @@ -1999,13 +1999,13 @@ packages: optional: true dependencies: '@babel/runtime': 7.20.6 - '@mui/material': 5.11.3_xzmje33rig364cbj43xp3ygiuq + '@mui/material': 5.11.5_xzmje33rig364cbj43xp3ygiuq '@types/react': 17.0.2 react: 18.2.0 dev: false - /@mui/lab/5.0.0-alpha.114_dbi4usuio23adpjgnme2ycpcbi: - resolution: {integrity: sha512-tChDoLaJ3qcYk37GIwBL1KrCiW0gpmEY//D5z5nHWnO/mzx3axjRJZpBOBeGEvhuoO/Y3QzMz4rhTvqbGNkW0w==} + /@mui/lab/5.0.0-alpha.116_2yiw3cvfmpchika5ilynltybxm: + resolution: {integrity: sha512-TJHXYuJnZWzHNtQ8VlFIbRB2ZrhOkc1N5yBANKn9UvT0ktpCgtnfkLsY5ckDE/PX54L0mg3kaZ6An5j4mvEzkQ==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -2025,9 +2025,9 @@ packages: '@babel/runtime': 7.20.7 '@emotion/react': 11.10.5_xsiwufliuohuftfflaac7ytfjq '@emotion/styled': 11.10.5_zy6ooirjq7hc4csu4yvgz4j3jq - '@mui/base': 5.0.0-alpha.112_5zfva2lldyu7jrbrwroiixp6xm - '@mui/material': 5.11.3_xzmje33rig364cbj43xp3ygiuq - '@mui/system': 5.11.2_j3jabumvycmrdiobmx2xqyhqry + '@mui/base': 5.0.0-alpha.114_5zfva2lldyu7jrbrwroiixp6xm + '@mui/material': 5.11.5_xzmje33rig364cbj43xp3ygiuq + '@mui/system': 5.11.5_j3jabumvycmrdiobmx2xqyhqry '@mui/types': 7.2.3_@types+react@17.0.2 '@mui/utils': 5.11.2_react@18.2.0 '@types/react': 17.0.2 @@ -2038,8 +2038,8 @@ packages: react-is: 18.2.0 dev: false - /@mui/material/5.11.3_xzmje33rig364cbj43xp3ygiuq: - resolution: {integrity: sha512-Oz+rMFiMtxzzDLUxKyyj4mSxF9ShmsBoJ9qvglXCYqklgSrEl1R/Z4hfPZ+2pWd5CriO8U/0CFHr4DksrlTiCw==} + /@mui/material/5.11.5_xzmje33rig364cbj43xp3ygiuq: + resolution: {integrity: sha512-5fzjBbRYaB5MoEpvA32oalAWltOZ3/kSyuovuVmPc6UF6AG42lTtbdMLpdCygurFSGUMZYTg4Cjij52fKlDDgg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -2058,9 +2058,9 @@ packages: '@babel/runtime': 7.20.7 '@emotion/react': 11.10.5_xsiwufliuohuftfflaac7ytfjq '@emotion/styled': 11.10.5_zy6ooirjq7hc4csu4yvgz4j3jq - '@mui/base': 5.0.0-alpha.112_5zfva2lldyu7jrbrwroiixp6xm - '@mui/core-downloads-tracker': 5.11.3 - '@mui/system': 5.11.2_j3jabumvycmrdiobmx2xqyhqry + '@mui/base': 5.0.0-alpha.114_5zfva2lldyu7jrbrwroiixp6xm + '@mui/core-downloads-tracker': 5.11.5 + '@mui/system': 5.11.5_j3jabumvycmrdiobmx2xqyhqry '@mui/types': 7.2.3_@types+react@17.0.2 '@mui/utils': 5.11.2_react@18.2.0 '@types/react': 17.0.2 @@ -2113,8 +2113,8 @@ packages: react: 18.2.0 dev: false - /@mui/system/5.11.2_j3jabumvycmrdiobmx2xqyhqry: - resolution: {integrity: sha512-PPkYhrcP2MkhscX6SauIl0wPgra0w1LGPtll+hIKc2Z2JbGRSrUCFif93kxejB7I1cAoCay9jWW4mnNhsOqF/g==} + /@mui/system/5.11.5_j3jabumvycmrdiobmx2xqyhqry: + resolution: {integrity: sha512-KNVsJ0sgRRp2XBqhh4wPS5aacteqjwxgiYTVwVnll2fgkgunZKo3DsDiGMrFlCg25ZHA3Ax58txWGE9w58zp0w==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -2154,20 +2154,6 @@ packages: '@types/react': 17.0.2 dev: false - /@mui/utils/5.11.0_react@18.2.0: - resolution: {integrity: sha512-DP/YDaVVCVzJpZ5FFPLKNmaJkeaYRviTyIZkL/D5/FmPXQiA6ecd6z0/+VwoNQtp7aXAQWaRhvz4FM25yqFlHA==} - engines: {node: '>=12.0.0'} - peerDependencies: - react: ^17.0.0 || ^18.0.0 - dependencies: - '@babel/runtime': 7.20.7 - '@types/prop-types': 15.7.5 - '@types/react-is': 17.0.3 - prop-types: 15.8.1 - react: 18.2.0 - react-is: 18.2.0 - dev: false - /@mui/utils/5.11.2_react@18.2.0: resolution: {integrity: sha512-AyizuHHlGdAtH5hOOXBW3kriuIwUIKUIgg0P7LzMvzf6jPhoQbENYqY6zJqfoZ7fAWMNNYT8mgN5EftNGzwE2w==} engines: {node: '>=12.0.0'} @@ -2182,8 +2168,8 @@ packages: react-is: 18.2.0 dev: false - /@mui/x-date-pickers/5.0.12_keijrcmsnr7xxc3hk5sxt6vz5m: - resolution: {integrity: sha512-HpiPE4nkqlklilKAxUQpf3tecJEDaTIBRRVTGk9GMgpkwli7Cv+5OGn6aSxG5ckMZdiQ/NT1L9kOcm0Bi9Gqjw==} + /@mui/x-date-pickers/5.0.14_6iihjhvbswr7q6eezau67wjxne: + resolution: {integrity: sha512-+k+YOL++wEwuF6XRhF3uMLOXlHkUjMHmbXOXWWZ9wJppaGFolj9fNmUvydCp3Z0E9dPRt8J5Vv0z+upZ9KyQZg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.9.0 @@ -2210,7 +2196,7 @@ packages: moment: optional: true dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@date-io/core': 2.16.0 '@date-io/date-fns': 2.15.0 '@date-io/dayjs': 2.16.0_dayjs@1.11.7 @@ -2218,9 +2204,9 @@ packages: '@date-io/moment': 2.15.0 '@emotion/react': 11.10.5_xsiwufliuohuftfflaac7ytfjq '@emotion/styled': 11.10.5_zy6ooirjq7hc4csu4yvgz4j3jq - '@mui/material': 5.11.3_xzmje33rig364cbj43xp3ygiuq - '@mui/system': 5.11.2_j3jabumvycmrdiobmx2xqyhqry - '@mui/utils': 5.11.0_react@18.2.0 + '@mui/material': 5.11.5_xzmje33rig364cbj43xp3ygiuq + '@mui/system': 5.11.5_j3jabumvycmrdiobmx2xqyhqry + '@mui/utils': 5.11.2_react@18.2.0 '@types/react-transition-group': 4.4.5 clsx: 1.2.1 dayjs: 1.11.7 @@ -2540,113 +2526,113 @@ packages: uuid: 8.3.2 dev: false - /@next/env/13.1.1: - resolution: {integrity: sha512-vFMyXtPjSAiOXOywMojxfKIqE3VWN5RCAx+tT3AS3pcKjMLFTCJFUWsKv8hC+87Z1F4W3r68qTwDFZIFmd5Xkw==} + /@next/env/13.1.2: + resolution: {integrity: sha512-PpT4UZIX66VMTqXt4HKEJ+/PwbS+tWmmhZlazaws1a+dbUA5pPdjntQ46Jvj616i3ZKN9doS9LHx3y50RLjAWg==} - /@next/eslint-plugin-next/13.1.1: - resolution: {integrity: sha512-SBrOFS8PC3nQ5aeZmawJkjKkWjwK9RoxvBSv/86nZp0ubdoVQoko8r8htALd9ufp16NhacCdqhu9bzZLDWtALQ==} + /@next/eslint-plugin-next/13.1.2: + resolution: {integrity: sha512-WGaNVvIYphdriesP6r7jq/8l7u38tzotnVQuxc1RYKLqYYApSsrebti3OCPoT3Gx0pw2smPIFHH98RzcsgW5GQ==} dependencies: glob: 7.1.7 dev: true - /@next/swc-android-arm-eabi/13.1.1: - resolution: {integrity: sha512-qnFCx1kT3JTWhWve4VkeWuZiyjG0b5T6J2iWuin74lORCupdrNukxkq9Pm+Z7PsatxuwVJMhjUoYz7H4cWzx2A==} + /@next/swc-android-arm-eabi/13.1.2: + resolution: {integrity: sha512-7mRz1owoGsbfIcdOJA3kk7KEwPZ+OvVT1z9DkR/yru4QdVLF69h/1SHy0vlUNQMxDRllabhxCfkoZCB34GOGAg==} engines: {node: '>= 10'} cpu: [arm] os: [android] requiresBuild: true optional: true - /@next/swc-android-arm64/13.1.1: - resolution: {integrity: sha512-eCiZhTzjySubNqUnNkQCjU3Fh+ep3C6b5DCM5FKzsTH/3Gr/4Y7EiaPZKILbvnXmhWtKPIdcY6Zjx51t4VeTfA==} + /@next/swc-android-arm64/13.1.2: + resolution: {integrity: sha512-mgjZ2eJSayovQm1LcE54BLSI4jjnnnLtq5GY5g+DdPuUiCT644gKtjZ/w2BQvuIecCqqBO+Ph9yzo/wUTq7NLg==} engines: {node: '>= 10'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /@next/swc-darwin-arm64/13.1.1: - resolution: {integrity: sha512-9zRJSSIwER5tu9ADDkPw5rIZ+Np44HTXpYMr0rkM656IvssowPxmhK0rTreC1gpUCYwFsRbxarUJnJsTWiutPg==} + /@next/swc-darwin-arm64/13.1.2: + resolution: {integrity: sha512-RikoQqy109r2222UJlyGs4dZw2BibkfPqpeFdW5JEGv+L2PStlHID8DwyVYbmHfQ0VIBGvbf/NAUtFakAWlhwg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@next/swc-darwin-x64/13.1.1: - resolution: {integrity: sha512-qWr9qEn5nrnlhB0rtjSdR00RRZEtxg4EGvicIipqZWEyayPxhUu6NwKiG8wZiYZCLfJ5KWr66PGSNeDMGlNaiA==} + /@next/swc-darwin-x64/13.1.2: + resolution: {integrity: sha512-JbDZjaTvL8gyPC5TAH6OnD4jmXPkyUxRYPvu08ZmhT/XAFBb/Cso0BdXyDax/BPCG70mimP9d3hXNKNq+A0VtQ==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@next/swc-freebsd-x64/13.1.1: - resolution: {integrity: sha512-UwP4w/NcQ7V/VJEj3tGVszgb4pyUCt3lzJfUhjDMUmQbzG9LDvgiZgAGMYH6L21MoyAATJQPDGiAMWAPKsmumA==} + /@next/swc-freebsd-x64/13.1.2: + resolution: {integrity: sha512-ax4j8VrdFQ/xc3W7Om0u1vnDxVApQHKsChBbAMynCrnycZmpbqK4MZu4ZkycT+mx2eccCiqZROpbzDbEdPosEw==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@next/swc-linux-arm-gnueabihf/13.1.1: - resolution: {integrity: sha512-CnsxmKHco9sosBs1XcvCXP845Db+Wx1G0qouV5+Gr+HT/ZlDYEWKoHVDgnJXLVEQzq4FmHddBNGbXvgqM1Gfkg==} + /@next/swc-linux-arm-gnueabihf/13.1.2: + resolution: {integrity: sha512-NcRHTesnCxnUvSJa637PQJffBBkmqi5XS/xVWGY7dI6nyJ+pC96Oj7kd+mcjnFUQI5lHKbg39qBWKtOzbezc4w==} engines: {node: '>= 10'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-gnu/13.1.1: - resolution: {integrity: sha512-JfDq1eri5Dif+VDpTkONRd083780nsMCOKoFG87wA0sa4xL8LGcXIBAkUGIC1uVy9SMsr2scA9CySLD/i+Oqiw==} + /@next/swc-linux-arm64-gnu/13.1.2: + resolution: {integrity: sha512-AxJdjocLtPrsBY4P2COSBIc3crT5bpjgGenNuINoensOlXhBkYM0aRDYZdydwXOhG+kN2ngUvfgitop9pa204w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-musl/13.1.1: - resolution: {integrity: sha512-GA67ZbDq2AW0CY07zzGt07M5b5Yaq5qUpFIoW3UFfjOPgb0Sqf3DAW7GtFMK1sF4ROHsRDMGQ9rnT0VM2dVfKA==} + /@next/swc-linux-arm64-musl/13.1.2: + resolution: {integrity: sha512-JmNimDkcCRq7P5zpkdqeaSZ69qKDntEPtyIaMNWqy5M0WUJxGim0Fs6Qzxayiyvuuh9Guxks4woQ/j/ZvX/c8Q==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-gnu/13.1.1: - resolution: {integrity: sha512-nnjuBrbzvqaOJaV+XgT8/+lmXrSCOt1YYZn/irbDb2fR2QprL6Q7WJNgwsZNxiLSfLdv+2RJGGegBx9sLBEzGA==} + /@next/swc-linux-x64-gnu/13.1.2: + resolution: {integrity: sha512-TsLsjZwUlgmvI42neTuIoD6K9RlXCUzqPtvIClgXxVO0um0DiZwK+M+0zX/uVXhMVphfPY2c5YeR1zFSIONY4A==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-musl/13.1.1: - resolution: {integrity: sha512-CM9xnAQNIZ8zf/igbIT/i3xWbQZYaF397H+JroF5VMOCUleElaMdQLL5riJml8wUfPoN3dtfn2s4peSr3azz/g==} + /@next/swc-linux-x64-musl/13.1.2: + resolution: {integrity: sha512-eSkyXgCXydEFPTkcncQOGepafedPte6JT/OofB9uvruucrrMVBagCASOuPxodWEMrlfEKSXVnExMKIlfmQMD7A==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-win32-arm64-msvc/13.1.1: - resolution: {integrity: sha512-pzUHOGrbgfGgPlOMx9xk3QdPJoRPU+om84hqVoe6u+E0RdwOG0Ho/2UxCgDqmvpUrMab1Deltlt6RqcXFpnigQ==} + /@next/swc-win32-arm64-msvc/13.1.2: + resolution: {integrity: sha512-DmXFaRTgt2KrV9dmRLifDJE+cYiutHVFIw5/C9BtnwXH39uf3YbPxeD98vNrtqqqZVVLXY/1ySaSIwzYnqeY9g==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-ia32-msvc/13.1.1: - resolution: {integrity: sha512-WeX8kVS46aobM9a7Xr/kEPcrTyiwJqQv/tbw6nhJ4fH9xNZ+cEcyPoQkwPo570dCOLz3Zo9S2q0E6lJ/EAUOBg==} + /@next/swc-win32-ia32-msvc/13.1.2: + resolution: {integrity: sha512-3+nBkuFs/wT+lmRVQNH5SyDT7I4vUlNPntosEaEP63FuYQdPLaxz0GvcR66MdFSFh2fsvazpe4wciOwVS4FItQ==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-x64-msvc/13.1.1: - resolution: {integrity: sha512-mVF0/3/5QAc5EGVnb8ll31nNvf3BWpPY4pBb84tk+BfQglWLqc5AC9q1Ht/YMWiEgs8ALNKEQ3GQnbY0bJF2Gg==} + /@next/swc-win32-x64-msvc/13.1.2: + resolution: {integrity: sha512-avsyveEvcvH42PvKjR4Pb8JlLttuGURr2H3ZhS2b85pHOiZ7yjH3rMUoGnNzuLMApyxYaCvd4MedPrLhnNhkog==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -2817,8 +2803,8 @@ packages: resolution: {integrity: sha512-/RVXdLvJxLg4QKvMoM5WlwNR9ViO9z8B/qPcc+C0Sa/teJY7QG7kJ441DwzOjMYEY7GmU4dj5EcGHIkKZiQZCA==} dev: false - /@react-oauth/google/0.5.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-XCMMke24klAHIVnrZAMibodyjSUsxBOJ+vO5yvRptWC2Vnq02uLUnydjtIdCzCUIAxbvbFbQWZxG0xF0Y8GtHA==} + /@react-oauth/google/0.6.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-F+VtUk40C5zjL/E3VW5/nsIfm7gmad4HgpGjW3shHqsL6hopOEIncWIGlEzKs2H/hlZw5mHkyq2ONmw5TI2j/g==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -2923,8 +2909,8 @@ packages: defer-to-connect: 2.0.1 dev: true - /@tailwindcss/typography/0.5.8_tailwindcss@3.2.4: - resolution: {integrity: sha512-xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw==} + /@tailwindcss/typography/0.5.9_tailwindcss@3.2.4: + resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==} peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: @@ -2932,7 +2918,7 @@ packages: lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.2.4_postcss@8.4.20 + tailwindcss: 3.2.4_postcss@8.4.21 dev: true /@tootallnate/once/2.0.0: @@ -3096,8 +3082,8 @@ packages: '@types/passport-strategy': 0.2.35 dev: true - /@types/passport-local/1.0.34: - resolution: {integrity: sha512-PSc07UdYx+jhadySxxIYWuv6sAnY5e+gesn/5lkPKfBeGuIYn9OPR+AAEDq73VRUh6NBTpvE/iPE62rzZUslog==} + /@types/passport-local/1.0.35: + resolution: {integrity: sha512-K4eLTJ8R0yYW8TvCqkjB0pTKoqfUSdl5PfZdidTjV2ETV3604fQxtY6BHKjQWAx50WUS0lqzBvKv3LoI1ZBPeA==} dependencies: '@types/express': 4.17.15 '@types/passport': 1.0.11 @@ -3183,8 +3169,8 @@ packages: resolution: {integrity: sha512-IJlrsiDWq6KghQ7tPlL5tcwSUyOxLDceT+AFUY7Ylj0Fcv3/h3QkANqQxZ0B5mEpEKxhTw76vDmvrruSMV9n9Q==} dev: true - /@typescript-eslint/eslint-plugin/5.48.0_k73wpmdolxikpyqun3p36akaaq: - resolution: {integrity: sha512-SVLafp0NXpoJY7ut6VFVUU9I+YeFsDzeQwtK0WZ+xbRN3mtxJ08je+6Oi2N89qDn087COdO0u3blKZNv9VetRQ==} + /@typescript-eslint/eslint-plugin/5.48.2_caon6io6stgpr7lz2rtbhekxqy: + resolution: {integrity: sha512-sR0Gja9Ky1teIq4qJOl0nC+Tk64/uYdX+mi+5iB//MH8gwyx8e3SOyhEzeLZEFEEfCaLf8KJq+Bd/6je1t+CAg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -3194,12 +3180,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe - '@typescript-eslint/scope-manager': 5.48.0 - '@typescript-eslint/type-utils': 5.48.0_iukboom6ndih5an6iafl45j2fe - '@typescript-eslint/utils': 5.48.0_iukboom6ndih5an6iafl45j2fe + '@typescript-eslint/parser': 5.48.2_7uibuqfxkfaozanbtbziikiqje + '@typescript-eslint/scope-manager': 5.48.2 + '@typescript-eslint/type-utils': 5.48.2_7uibuqfxkfaozanbtbziikiqje + '@typescript-eslint/utils': 5.48.2_7uibuqfxkfaozanbtbziikiqje debug: 4.3.4 - eslint: 8.31.0 + eslint: 8.32.0 ignore: 5.2.0 natural-compare-lite: 1.4.0 regexpp: 3.2.0 @@ -3210,7 +3196,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.48.0_iukboom6ndih5an6iafl45j2fe: + /@typescript-eslint/parser/5.48.0_7uibuqfxkfaozanbtbziikiqje: resolution: {integrity: sha512-1mxNA8qfgxX8kBvRDIHEzrRGrKHQfQlbW6iHyfHYS0Q4X1af+S6mkLNtgCOsGVl8+/LUPrqdHMssAemkrQ01qg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3224,7 +3210,27 @@ packages: '@typescript-eslint/types': 5.48.0 '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.4 debug: 4.3.4 - eslint: 8.31.0 + eslint: 8.32.0 + typescript: 4.9.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser/5.48.2_7uibuqfxkfaozanbtbziikiqje: + resolution: {integrity: sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.48.2 + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.4 + debug: 4.3.4 + eslint: 8.32.0 typescript: 4.9.4 transitivePeerDependencies: - supports-color @@ -3238,8 +3244,16 @@ packages: '@typescript-eslint/visitor-keys': 5.48.0 dev: true - /@typescript-eslint/type-utils/5.48.0_iukboom6ndih5an6iafl45j2fe: - resolution: {integrity: sha512-vbtPO5sJyFjtHkGlGK4Sthmta0Bbls4Onv0bEqOGm7hP9h8UpRsHJwsrCiWtCUndTRNQO/qe6Ijz9rnT/DB+7g==} + /@typescript-eslint/scope-manager/5.48.2: + resolution: {integrity: sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/visitor-keys': 5.48.2 + dev: true + + /@typescript-eslint/type-utils/5.48.2_7uibuqfxkfaozanbtbziikiqje: + resolution: {integrity: sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -3248,10 +3262,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.4 - '@typescript-eslint/utils': 5.48.0_iukboom6ndih5an6iafl45j2fe + '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.4 + '@typescript-eslint/utils': 5.48.2_7uibuqfxkfaozanbtbziikiqje debug: 4.3.4 - eslint: 8.31.0 + eslint: 8.32.0 tsutils: 3.21.0_typescript@4.9.4 typescript: 4.9.4 transitivePeerDependencies: @@ -3263,6 +3277,11 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true + /@typescript-eslint/types/5.48.2: + resolution: {integrity: sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /@typescript-eslint/typescript-estree/5.48.0_typescript@4.9.4: resolution: {integrity: sha512-7pjd94vvIjI1zTz6aq/5wwE/YrfIyEPLtGJmRfyNR9NYIW+rOvzzUv3Cmq2hRKpvt6e9vpvPUQ7puzX7VSmsEw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3284,20 +3303,41 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.48.0_iukboom6ndih5an6iafl45j2fe: - resolution: {integrity: sha512-x2jrMcPaMfsHRRIkL+x96++xdzvrdBCnYRd5QiW5Wgo1OB4kDYPbC1XjWP/TNqlfK93K/lUL92erq5zPLgFScQ==} + /@typescript-eslint/typescript-estree/5.48.2_typescript@4.9.4: + resolution: {integrity: sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/visitor-keys': 5.48.2 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0_typescript@4.9.4 + typescript: 4.9.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.48.2_7uibuqfxkfaozanbtbziikiqje: + resolution: {integrity: sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.48.0 - '@typescript-eslint/types': 5.48.0 - '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.4 - eslint: 8.31.0 + '@typescript-eslint/scope-manager': 5.48.2 + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.4 + eslint: 8.32.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.31.0 + eslint-utils: 3.0.0_eslint@8.32.0 semver: 7.3.8 transitivePeerDependencies: - supports-color @@ -3312,6 +3352,14 @@ packages: eslint-visitor-keys: 3.3.0 dev: true + /@typescript-eslint/visitor-keys/5.48.2: + resolution: {integrity: sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.48.2 + eslint-visitor-keys: 3.3.0 + dev: true + /@webassemblyjs/ast/1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: @@ -3653,13 +3701,13 @@ packages: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} dev: false - /array-includes/3.1.5: - resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} + /array-includes/3.1.6: + resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 get-intrinsic: 1.1.3 is-string: 1.0.7 dev: true @@ -3669,23 +3717,23 @@ packages: engines: {node: '>=8'} dev: true - /array.prototype.flat/1.3.0: - resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} + /array.prototype.flat/1.3.1: + resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 es-shim-unscopables: 1.0.0 dev: true - /array.prototype.flatmap/1.3.0: - resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==} + /array.prototype.flatmap/1.3.1: + resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 es-shim-unscopables: 1.0.0 dev: true @@ -3702,7 +3750,7 @@ packages: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: false - /autoprefixer/10.4.13_postcss@8.4.20: + /autoprefixer/10.4.13_postcss@8.4.21: resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -3714,10 +3762,15 @@ packages: fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.20 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: true + /available-typed-arrays/1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + /axe-core/4.4.3: resolution: {integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==} engines: {node: '>=4'} @@ -3733,8 +3786,8 @@ packages: - debug dev: false - /axios/1.2.2: - resolution: {integrity: sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==} + /axios/1.2.3: + resolution: {integrity: sha512-pdDkMYJeuXLZ6Xj/Q5J3Phpe+jbGdsSzlQaFVkMQzRUL05+6+tetX8TV3p4HrU4kzuO9bt+io/yGQxuyxA/xcw==} dependencies: follow-redirects: 1.15.1 form-data: 4.0.0 @@ -5475,39 +5528,58 @@ packages: dependencies: is-arrayish: 0.2.1 - /es-abstract/1.20.2: - resolution: {integrity: sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==} + /es-abstract/1.21.1: + resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} engines: {node: '>= 0.4'} dependencies: + available-typed-arrays: 1.0.5 call-bind: 1.0.2 + es-set-tostringtag: 2.0.1 es-to-primitive: 1.2.1 function-bind: 1.1.1 function.prototype.name: 1.1.5 get-intrinsic: 1.1.3 get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 has: 1.0.3 has-property-descriptors: 1.0.0 + has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.3 - is-callable: 1.2.6 + internal-slot: 1.0.4 + is-array-buffer: 3.0.1 + is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 + is-typed-array: 1.1.10 is-weakref: 1.0.2 object-inspect: 1.12.2 object-keys: 1.1.1 object.assign: 4.1.4 regexp.prototype.flags: 1.4.3 - string.prototype.trimend: 1.0.5 - string.prototype.trimstart: 1.0.5 + safe-regex-test: 1.0.0 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + typed-array-length: 1.0.4 unbox-primitive: 1.0.2 + which-typed-array: 1.1.9 dev: true /es-module-lexer/0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} dev: true + /es-set-tostringtag/2.0.1: + resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.3 + has: 1.0.3 + has-tostringtag: 1.0.0 + dev: true + /es-shim-unscopables/1.0.0: resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} dependencies: @@ -5518,7 +5590,7 @@ packages: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: - is-callable: 1.2.6 + is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 dev: true @@ -5549,8 +5621,8 @@ packages: engines: {node: '>=12'} dev: false - /eslint-config-next/13.1.1_iukboom6ndih5an6iafl45j2fe: - resolution: {integrity: sha512-/5S2XGWlGaiqrRhzpn51ux5JUSLwx8PVK2keLi5xk7QmhfYB8PqE6R6SlVw6hgnf/VexvUXSrlNJ/su00NhtHQ==} + /eslint-config-next/13.1.2_7uibuqfxkfaozanbtbziikiqje: + resolution: {integrity: sha512-zdRAQOr8v69ZwJRtBrGqAqm160ONqKxU/pV1FB1KlgfyqveGsLZmlQ7l31otwtw763901J7xdiTVkj2y3YxXZA==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -5558,16 +5630,16 @@ packages: typescript: optional: true dependencies: - '@next/eslint-plugin-next': 13.1.1 + '@next/eslint-plugin-next': 13.1.2 '@rushstack/eslint-patch': 1.1.4 - '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe - eslint: 8.31.0 + '@typescript-eslint/parser': 5.48.0_7uibuqfxkfaozanbtbziikiqje + eslint: 8.32.0 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 3.5.2_ol7jqilc3wemtdbq3nzhywgxq4 - eslint-plugin-import: 2.26.0_eslint@8.31.0 - eslint-plugin-jsx-a11y: 6.6.1_eslint@8.31.0 - eslint-plugin-react: 7.31.8_eslint@8.31.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.31.0 + eslint-import-resolver-typescript: 3.5.2_kornzrmzxylufiu5zotgc4cisa + eslint-plugin-import: 2.26.0_eslint@8.32.0 + eslint-plugin-jsx-a11y: 6.6.1_eslint@8.32.0 + eslint-plugin-react: 7.31.8_eslint@8.32.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.32.0 typescript: 4.9.4 transitivePeerDependencies: - eslint-import-resolver-webpack @@ -5583,7 +5655,17 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript/3.5.2_ol7jqilc3wemtdbq3nzhywgxq4: + /eslint-import-resolver-node/0.3.7: + resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + dependencies: + debug: 3.2.7 + is-core-module: 2.11.0 + resolve: 1.22.1 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-import-resolver-typescript/3.5.2_kornzrmzxylufiu5zotgc4cisa: resolution: {integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -5592,18 +5674,18 @@ packages: dependencies: debug: 4.3.4 enhanced-resolve: 5.10.0 - eslint: 8.31.0 - eslint-plugin-import: 2.26.0_eslint@8.31.0 + eslint: 8.32.0 + eslint-plugin-import: 2.26.0_eslint@8.32.0 get-tsconfig: 4.2.0 globby: 13.1.2 - is-core-module: 2.10.0 + is-core-module: 2.11.0 is-glob: 4.0.3 synckit: 0.8.4 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.4_gauu7rrsoohvlnqdwirscmegn4: + /eslint-module-utils/2.7.4_kvyj4idustix6trhy5lyssy2sq: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -5624,15 +5706,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe + '@typescript-eslint/parser': 5.48.2_7uibuqfxkfaozanbtbziikiqje debug: 3.2.7 - eslint: 8.31.0 - eslint-import-resolver-node: 0.3.6 + eslint: 8.32.0 + eslint-import-resolver-node: 0.3.7 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.4_rahvyjeqqlq6ogimp3cp7kgkfq: + /eslint-module-utils/2.7.4_tdm2zecdp3gdwhfxnfmevnwugq: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -5654,13 +5736,13 @@ packages: optional: true dependencies: debug: 3.2.7 - eslint: 8.31.0 - eslint-import-resolver-node: 0.3.6 + eslint: 8.32.0 + eslint-import-resolver-node: 0.3.7 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import/2.26.0_eslint@8.31.0: + /eslint-plugin-import/2.26.0_eslint@8.32.0: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -5670,18 +5752,18 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - array-includes: 3.1.5 - array.prototype.flat: 1.3.0 + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.31.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.4_rahvyjeqqlq6ogimp3cp7kgkfq + eslint: 8.32.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.7.4_tdm2zecdp3gdwhfxnfmevnwugq has: 1.0.3 - is-core-module: 2.10.0 + is-core-module: 2.11.0 is-glob: 4.0.3 minimatch: 3.1.2 - object.values: 1.1.5 + object.values: 1.1.6 resolve: 1.22.1 tsconfig-paths: 3.14.1 transitivePeerDependencies: @@ -5690,8 +5772,8 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.26.0_m2kn7xiag5lymyarkgri27ztxm: - resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + /eslint-plugin-import/2.27.5_2l6piu6guil2f63lj3qmhzbnn4: + resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -5700,20 +5782,22 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe - array-includes: 3.1.5 - array.prototype.flat: 1.3.0 - debug: 2.6.9 + '@typescript-eslint/parser': 5.48.2_7uibuqfxkfaozanbtbziikiqje + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + array.prototype.flatmap: 1.3.1 + debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.31.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.4_gauu7rrsoohvlnqdwirscmegn4 + eslint: 8.32.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.7.4_kvyj4idustix6trhy5lyssy2sq has: 1.0.3 - is-core-module: 2.10.0 + is-core-module: 2.11.0 is-glob: 4.0.3 minimatch: 3.1.2 - object.values: 1.1.5 + object.values: 1.1.6 resolve: 1.22.1 + semver: 6.3.0 tsconfig-paths: 3.14.1 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -5721,7 +5805,7 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y/6.6.1_eslint@8.31.0: + /eslint-plugin-jsx-a11y/6.6.1_eslint@8.32.0: resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==} engines: {node: '>=4.0'} peerDependencies: @@ -5729,13 +5813,13 @@ packages: dependencies: '@babel/runtime': 7.20.7 aria-query: 4.2.2 - array-includes: 3.1.5 + array-includes: 3.1.6 ast-types-flow: 0.0.7 axe-core: 4.4.3 axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.31.0 + eslint: 8.32.0 has: 1.0.3 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 @@ -5743,44 +5827,44 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.31.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.32.0: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.31.0 + eslint: 8.32.0 dev: true - /eslint-plugin-react/7.31.8_eslint@8.31.0: + /eslint-plugin-react/7.31.8_eslint@8.32.0: resolution: {integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.5 - array.prototype.flatmap: 1.3.0 + array-includes: 3.1.6 + array.prototype.flatmap: 1.3.1 doctrine: 2.1.0 - eslint: 8.31.0 + eslint: 8.32.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 object.entries: 1.1.5 object.fromentries: 2.0.5 object.hasown: 1.1.1 - object.values: 1.1.5 + object.values: 1.1.6 prop-types: 15.8.1 resolve: 2.0.0-next.4 semver: 6.3.0 string.prototype.matchall: 4.0.7 dev: true - /eslint-plugin-simple-import-sort/8.0.0_eslint@8.31.0: - resolution: {integrity: sha512-bXgJQ+lqhtQBCuWY/FUWdB27j4+lqcvXv5rUARkzbeWLwea+S5eBZEQrhnO+WgX3ZoJHVj0cn943iyXwByHHQw==} + /eslint-plugin-simple-import-sort/9.0.0_eslint@8.32.0: + resolution: {integrity: sha512-PtrLjyXP8kjRneWT1n0b99y/2Fyup37we7FVoWsI61/O7x4ztLohzhep/pxI/cYlECr/cQ2j6utckdvWpVwXNA==} peerDependencies: eslint: '>=5.0.0' dependencies: - eslint: 8.31.0 + eslint: 8.32.0 dev: true /eslint-plugin-tailwindcss/3.8.0: @@ -5788,13 +5872,13 @@ packages: engines: {node: '>=12.13.0'} dependencies: fast-glob: 3.2.12 - postcss: 8.4.20 - tailwindcss: 3.2.4_postcss@8.4.20 + postcss: 8.4.21 + tailwindcss: 3.2.4_postcss@8.4.21 transitivePeerDependencies: - ts-node dev: true - /eslint-plugin-unused-imports/2.0.0_eslint@8.31.0: + /eslint-plugin-unused-imports/2.0.0_eslint@8.32.0: resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -5804,7 +5888,7 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - eslint: 8.31.0 + eslint: 8.32.0 eslint-rule-composer: 0.3.0 dev: true @@ -5829,13 +5913,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.31.0: + /eslint-utils/3.0.0_eslint@8.32.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.31.0 + eslint: 8.32.0 eslint-visitor-keys: 2.1.0 dev: true @@ -5849,8 +5933,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.31.0: - resolution: {integrity: sha512-0tQQEVdmPZ1UtUKXjX7EMm9BlgJ08G90IhWh0PKDCb3ZLsgAOHI8fYSIzYVZej92zsgq+ft0FGsxhJ3xo2tbuA==} + /eslint/8.32.0: + resolution: {integrity: sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -5865,7 +5949,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.31.0 + eslint-utils: 3.0.0_eslint@8.32.0 eslint-visitor-keys: 3.3.0 espree: 9.4.0 esquery: 1.4.0 @@ -6137,6 +6221,12 @@ packages: optional: true dev: false + /for-each/0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + /fork-ts-checker-webpack-plugin/7.2.14_3fkjkrd3audxnith3e7fo4fnxi: resolution: {integrity: sha512-Tg2feh/n8k486KX0EbXVUfJj3j0xnnbKYTJw0fnIb2QdV0+lblOYZSal5ed9hARoWVwKeOC7sYE2EakSRLo5ZA==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} @@ -6256,7 +6346,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 functions-have-names: 1.2.3 dev: true @@ -6423,6 +6513,13 @@ packages: engines: {node: '>=0.10.0'} dev: false + /globalthis/1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.1.4 + dev: true + /globalyzer/0.1.0: resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} dev: true @@ -6488,6 +6585,12 @@ packages: node-forge: 1.3.1 dev: false + /gopd/1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.1.3 + dev: true + /got/12.5.3: resolution: {integrity: sha512-8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w==} engines: {node: '>=14.16'} @@ -6550,6 +6653,11 @@ packages: get-intrinsic: 1.1.3 dev: true + /has-proto/1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + /has-symbols/1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} @@ -6862,6 +6970,15 @@ packages: side-channel: 1.0.4 dev: true + /internal-slot/1.0.4: + resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.3 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + /interpret/1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} engines: {node: '>= 0.10'} @@ -6882,6 +6999,14 @@ packages: engines: {node: '>= 0.10'} dev: false + /is-array-buffer/3.0.1: + resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + is-typed-array: 1.1.10 + dev: true + /is-arrayish/0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -6914,8 +7039,8 @@ packages: engines: {node: '>=4'} dev: false - /is-callable/1.2.6: - resolution: {integrity: sha512-krO72EO2NptOGAX2KYyqbP9vYMlNAXdB53rq6f8LXY6RY7JdSR/3BD6wLUlPHSAesmY9vstNrjvqGaCiRK/91Q==} + /is-callable/1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} dev: true @@ -6931,6 +7056,12 @@ packages: dependencies: has: 1.0.3 + /is-core-module/2.11.0: + resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} + dependencies: + has: 1.0.3 + dev: true + /is-date-object/1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} @@ -7048,6 +7179,17 @@ packages: has-symbols: 1.0.3 dev: true + /is-typed-array/1.1.10: + resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + /is-typedarray/1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} dev: true @@ -7238,7 +7380,7 @@ packages: resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} engines: {node: '>=4.0'} dependencies: - array-includes: 3.1.5 + array-includes: 3.1.6 object.assign: 4.1.4 dev: true @@ -8167,7 +8309,7 @@ packages: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} dev: true - /next-i18next/13.0.3_n265y3gumow5fma3xmih3e4nam: + /next-i18next/13.0.3_6cq7whng7i6ofg3nyhcmx36bz4: resolution: {integrity: sha512-7AA8J6WbkxRBtSf1+97LSAE7btxWZHsBIJEJ3FuTSBgYtpRiO5NGjcb8XbNAlz6yGU0TtS+yZE+/Wu83KhIT1Q==} engines: {node: '>=14'} peerDependencies: @@ -8182,13 +8324,13 @@ packages: hoist-non-react-statics: 3.3.2 i18next: 22.0.6 i18next-fs-backend: 2.1.0 - next: 13.1.1_23e7ztf2chqi3ri6onem3l5mii + next: 13.1.2_23e7ztf2chqi3ri6onem3l5mii react: 18.2.0 react-i18next: 12.1.1_nger6pvrp5hnzeykouhwqmsdti dev: false - /next-sitemap/3.1.44_syentjjt63dukspj2zj7hzem6y: - resolution: {integrity: sha512-dg+qGfOpQemAb+LGShJmaJHyuf36rVqsIbkCBt0ldu10sAx+eMowVx6DzEtf2HoIIGWc7J+kfy//YsBCPdj47Q==} + /next-sitemap/3.1.45_qzmmcn6byxg2j2hy7c3csxpwzm: + resolution: {integrity: sha512-8vyvWC8KT8RIEUL9Vfiae9yGuIIiJ1IpepzbFtwZx43BaKsoi/Zk9OlmPKuQouVY726xwN7uLZPtgl2l2U+9Ug==} engines: {node: '>=14.18'} hasBin: true peerDependencies: @@ -8196,13 +8338,13 @@ packages: next: '*' dependencies: '@corex/deepmerge': 4.0.29 - '@next/env': 13.1.1 + '@next/env': 13.1.2 minimist: 1.2.7 - next: 13.1.1_23e7ztf2chqi3ri6onem3l5mii + next: 13.1.2_23e7ztf2chqi3ri6onem3l5mii dev: true - /next/13.1.1_23e7ztf2chqi3ri6onem3l5mii: - resolution: {integrity: sha512-R5eBAaIa3X7LJeYvv1bMdGnAVF4fVToEjim7MkflceFPuANY3YyvFxXee/A+acrSYwYPvOvf7f6v/BM/48ea5w==} + /next/13.1.2_23e7ztf2chqi3ri6onem3l5mii: + resolution: {integrity: sha512-Rdnnb2YH///w78FEOR/IQ6TXga+qpth4OqFSem48ng1PYYKr6XBsIk1XVaRcIGM3o6iiHnun0nJvkJHDf+ICyQ==} engines: {node: '>=14.6.0'} hasBin: true peerDependencies: @@ -8219,7 +8361,7 @@ packages: sass: optional: true dependencies: - '@next/env': 13.1.1 + '@next/env': 13.1.2 '@swc/helpers': 0.4.14 caniuse-lite: 1.0.30001431 postcss: 8.4.14 @@ -8228,19 +8370,19 @@ packages: sass: 1.57.1 styled-jsx: 5.1.1_2exiyaescjxorpwwmy4ejghgte optionalDependencies: - '@next/swc-android-arm-eabi': 13.1.1 - '@next/swc-android-arm64': 13.1.1 - '@next/swc-darwin-arm64': 13.1.1 - '@next/swc-darwin-x64': 13.1.1 - '@next/swc-freebsd-x64': 13.1.1 - '@next/swc-linux-arm-gnueabihf': 13.1.1 - '@next/swc-linux-arm64-gnu': 13.1.1 - '@next/swc-linux-arm64-musl': 13.1.1 - '@next/swc-linux-x64-gnu': 13.1.1 - '@next/swc-linux-x64-musl': 13.1.1 - '@next/swc-win32-arm64-msvc': 13.1.1 - '@next/swc-win32-ia32-msvc': 13.1.1 - '@next/swc-win32-x64-msvc': 13.1.1 + '@next/swc-android-arm-eabi': 13.1.2 + '@next/swc-android-arm64': 13.1.2 + '@next/swc-darwin-arm64': 13.1.2 + '@next/swc-darwin-x64': 13.1.2 + '@next/swc-freebsd-x64': 13.1.2 + '@next/swc-linux-arm-gnueabihf': 13.1.2 + '@next/swc-linux-arm64-gnu': 13.1.2 + '@next/swc-linux-arm64-musl': 13.1.2 + '@next/swc-linux-x64-gnu': 13.1.2 + '@next/swc-linux-x64-musl': 13.1.2 + '@next/swc-win32-arm64-msvc': 13.1.2 + '@next/swc-win32-ia32-msvc': 13.1.2 + '@next/swc-win32-x64-msvc': 13.1.2 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros @@ -8315,8 +8457,8 @@ packages: engines: {node: '>=0.12.0'} dev: false - /nodemailer/6.8.0: - resolution: {integrity: sha512-EjYvSmHzekz6VNkNd12aUqAco+bOkRe3Of5jVhltqKhEsjw/y0PYPJfp83+s9Wzh1dspYAkUW/YNQ350NATbSQ==} + /nodemailer/6.9.0: + resolution: {integrity: sha512-jFaCEGTeT3E/m/5R2MHWiyQH3pSARECRUDM+1hokOYc3lQAAG7ASuy+2jIsYVf+RVa9zePopSQwKNVFH8DKUpA==} engines: {node: '>=6.0.0'} dev: false @@ -8333,7 +8475,7 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: hosted-git-info: 6.1.1 - is-core-module: 2.10.0 + is-core-module: 2.11.0 semver: 7.3.8 validate-npm-package-license: 3.0.4 dev: true @@ -8502,7 +8644,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 dev: true /object.fromentries/2.0.5: @@ -8511,23 +8653,23 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 dev: true /object.hasown/1.1.1: resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} dependencies: define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 dev: true - /object.values/1.1.5: - resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} + /object.values/1.1.6: + resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 dev: true /oblivious-set/1.0.0: @@ -8863,17 +9005,17 @@ packages: engines: {node: '>=0.10.0'} dev: true - /playwright-chromium/1.29.1: - resolution: {integrity: sha512-Mdt15dIcYyM3MBBBKYQPBWzqcjrMcJ0n9v567DmHYgJk4XfJlQ2jQVzdQ1OyM1oKaOZ70CuC60f1fZtH8KglMA==} + /playwright-chromium/1.29.2: + resolution: {integrity: sha512-iylIZpI8pD2ukBY5fQhluCx530bi2w4oUUM0PAfsxBnAYKntdj4bkTlcHuvS23EvabUS++YYi6KCI5uC517nxQ==} engines: {node: '>=14'} hasBin: true requiresBuild: true dependencies: - playwright-core: 1.29.1 + playwright-core: 1.29.2 dev: false - /playwright-core/1.29.1: - resolution: {integrity: sha512-20Ai3d+lMkWpI9YZYlxk8gxatfgax5STW8GaMozAHwigLiyiKQrdkt7gaoT9UQR8FIVDg6qVXs9IoZUQrDjIIg==} + /playwright-core/1.29.2: + resolution: {integrity: sha512-94QXm4PMgFoHAhlCuoWyaBYKb92yOcGVHdQLoxQ7Wjlc7Flg4aC/jbFW7xMR52OfXMVkWicue4WXE7QEegbIRA==} engines: {node: '>=14'} hasBin: true dev: false @@ -8883,29 +9025,29 @@ packages: engines: {node: '>=4'} dev: true - /postcss-import/14.1.0_postcss@8.4.20: + /postcss-import/14.1.0_postcss@8.4.21: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 dev: true - /postcss-js/4.0.0_postcss@8.4.20: + /postcss-js/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.20 + postcss: 8.4.21 dev: true - /postcss-load-config/3.1.4_postcss@8.4.20: + /postcss-load-config/3.1.4_postcss@8.4.21: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -8918,17 +9060,17 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.20 + postcss: 8.4.21 yaml: 1.10.2 dev: true - /postcss-nested/6.0.0_postcss@8.4.20: + /postcss-nested/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: true @@ -8952,8 +9094,8 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss/8.4.20: - resolution: {integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==} + /postcss/8.4.21: + resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -9007,8 +9149,8 @@ packages: engines: {node: '>= 0.8.0'} dev: true - /prettier/2.8.1: - resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==} + /prettier/2.8.3: + resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} engines: {node: '>=10.13.0'} hasBin: true dev: true @@ -9217,8 +9359,8 @@ packages: react: 18.2.0 scheduler: 0.23.0 - /react-hook-form/7.41.5_react@18.2.0: - resolution: {integrity: sha512-DAKjSJ7X9f16oQrP3TW2/eD9N6HOgrmIahP4LOdFphEWVfGZ2LulFd6f6AQ/YS/0cx/5oc4j8a1PXxuaurWp/Q==} + /react-hook-form/7.42.1_react@18.2.0: + resolution: {integrity: sha512-2UIGqwMZksd5HS55crTT1ATLTr0rAI4jS7yVuqTaoRVDhY2Qc4IyjskCmpnmdYqUNOYFy04vW253tb2JRVh+IQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 @@ -9275,8 +9417,8 @@ packages: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} dev: false - /react-markdown/8.0.4_akgelr6b34ghs4njbbtjaykm7q: - resolution: {integrity: sha512-2oxHa6oDxc1apg/Gnc1Goh06t3B617xeywqI/92wmDV9FELI6ayRkwge7w7DoEqM0gRpZGTNU6xQG+YpJISnVg==} + /react-markdown/8.0.5_akgelr6b34ghs4njbbtjaykm7q: + resolution: {integrity: sha512-jGJolWWmOWAvzf+xMdB9zwStViODyyFQhNB/bwCerbBKmrTmgmA599CGiOlP58OId1IMoIRsA8UdI1Lod4zb5A==} peerDependencies: '@types/react': '>=16' react: '>=16' @@ -9294,7 +9436,7 @@ packages: remark-parse: 10.0.1 remark-rehype: 10.1.0 space-separated-tokens: 2.0.1 - style-to-object: 0.3.0 + style-to-object: 0.4.1 unified: 10.1.2 unist-util-visit: 4.1.1 vfile: 5.3.4 @@ -9369,12 +9511,12 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /react-zoom-pan-pinch/2.1.3_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-a5AChOWhjo0RmxsNZXGQIlNh3e3nLU6m4V6M+6dlbPNk5d+MtMxgKWyA5zpR06Lp3OZkZVF9nR8JeWSvKwck9g==} + /react-zoom-pan-pinch/2.2.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-khOlTeTI/ZXtbCfqUmkKW0HpM+w0RklEQ1DlFVi0D9y90r+Z8x+ipKBXvPQC3rUu5VoYK4603SY8GsA6enfa8w==} engines: {node: '>=8', npm: '>=5'} peerDependencies: - react: ^17.0.2 - react-dom: ^17.0.2 + react: '*' + react-dom: '*' dependencies: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -9663,7 +9805,7 @@ packages: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} hasBin: true dependencies: - is-core-module: 2.10.0 + is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -9707,6 +9849,12 @@ packages: dependencies: glob: 7.2.3 + /rimraf/4.1.1: + resolution: {integrity: sha512-Z4Y81w8atcvaJuJuBB88VpADRH66okZAuEm+Jtaufa+s7rZmIz+Hik2G53kGaNytE7lsfXyWktTmfVz0H9xuDg==} + engines: {node: '>=14'} + hasBin: true + dev: false + /run-async/2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -9743,6 +9891,14 @@ packages: /safe-buffer/5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + /safe-regex-test/1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + is-regex: 1.1.4 + dev: true + /safer-buffer/2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} @@ -10099,7 +10255,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 get-intrinsic: 1.1.3 has-symbols: 1.0.3 internal-slot: 1.0.3 @@ -10107,20 +10263,20 @@ packages: side-channel: 1.0.4 dev: true - /string.prototype.trimend/1.0.5: - resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + /string.prototype.trimend/1.0.6: + resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 dev: true - /string.prototype.trimstart/1.0.5: - resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + /string.prototype.trimstart/1.0.6: + resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.2 + es-abstract: 1.21.1 dev: true /string_decoder/1.1.1: @@ -10184,8 +10340,8 @@ packages: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} dev: false - /style-to-object/0.3.0: - resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + /style-to-object/0.4.1: + resolution: {integrity: sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==} dependencies: inline-style-parser: 0.1.1 dev: false @@ -10252,7 +10408,7 @@ packages: tslib: 2.4.1 dev: true - /tailwindcss/3.2.4_postcss@8.4.20: + /tailwindcss/3.2.4_postcss@8.4.21: resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} engines: {node: '>=12.13.0'} hasBin: true @@ -10273,11 +10429,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.20 - postcss-import: 14.1.0_postcss@8.4.20 - postcss-js: 4.0.0_postcss@8.4.20 - postcss-load-config: 3.1.4_postcss@8.4.20 - postcss-nested: 6.0.0_postcss@8.4.20 + postcss: 8.4.21 + postcss-import: 14.1.0_postcss@8.4.21 + postcss-js: 4.0.0_postcss@8.4.21 + postcss-load-config: 3.1.4_postcss@8.4.21 + postcss-nested: 6.0.0_postcss@8.4.21 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -10542,65 +10698,65 @@ packages: safe-buffer: 5.2.1 dev: false - /turbo-darwin-64/1.6.3: - resolution: {integrity: sha512-QmDIX0Yh1wYQl0bUS0gGWwNxpJwrzZU2GIAYt3aOKoirWA2ecnyb3R6ludcS1znfNV2MfunP+l8E3ncxUHwtjA==} + /turbo-darwin-64/1.7.0: + resolution: {integrity: sha512-hSGAueSf5Ko8J67mpqjpt9FsP6ePn1nMcl7IVPoJq5dHsgX3anCP/BPlexJ502bNK+87DDyhQhJ/LPSJXKrSYQ==} cpu: [x64] os: [darwin] requiresBuild: true dev: false optional: true - /turbo-darwin-arm64/1.6.3: - resolution: {integrity: sha512-75DXhFpwE7CinBbtxTxH08EcWrxYSPFow3NaeFwsG8aymkWXF+U2aukYHJA6I12n9/dGqf7yRXzkF0S/9UtdyQ==} + /turbo-darwin-arm64/1.7.0: + resolution: {integrity: sha512-BLLOW5W6VZxk5+0ZOj5AO1qjM0P5isIgjbEuyAl8lHZ4s9antUbY4CtFrspT32XxPTYoDl4UjviPMcSsbcl3WQ==} cpu: [arm64] os: [darwin] requiresBuild: true dev: false optional: true - /turbo-linux-64/1.6.3: - resolution: {integrity: sha512-O9uc6J0yoRPWdPg9THRQi69K6E2iZ98cRHNvus05lZbcPzZTxJYkYGb5iagCmCW/pq6fL4T4oLWAd6evg2LGQA==} + /turbo-linux-64/1.7.0: + resolution: {integrity: sha512-aw2qxmfZa+kT87SB3GNUoFimqEPzTlzlRqhPgHuAAT6Uf0JHnmebPt4K+ZPtDNl5yfVmtB05bhHPqw+5QV97Yg==} cpu: [x64] os: [linux] requiresBuild: true dev: false optional: true - /turbo-linux-arm64/1.6.3: - resolution: {integrity: sha512-dCy667qqEtZIhulsRTe8hhWQNCJO0i20uHXv7KjLHuFZGCeMbWxB8rsneRoY+blf8+QNqGuXQJxak7ayjHLxiA==} + /turbo-linux-arm64/1.7.0: + resolution: {integrity: sha512-AJEx2jX+zO5fQtJpO3r6uhTabj4oSA5ZhB7zTs/rwu/XqoydsvStA4X8NDW4poTbOjF7DcSHizqwi04tSMzpJw==} cpu: [arm64] os: [linux] requiresBuild: true dev: false optional: true - /turbo-windows-64/1.6.3: - resolution: {integrity: sha512-lKRqwL3mrVF09b9KySSaOwetehmGknV9EcQTF7d2dxngGYYX1WXoQLjFP9YYH8ZV07oPm+RUOAKSCQuDuMNhiA==} + /turbo-windows-64/1.7.0: + resolution: {integrity: sha512-ewj7PPv2uxqv0r31hgnBa3E5qwUu7eyVRP5M1gB/TJXfSHduU79gbxpKCyxIZv2fL/N2/3U7EPOQPSZxBAoljA==} cpu: [x64] os: [win32] requiresBuild: true dev: false optional: true - /turbo-windows-arm64/1.6.3: - resolution: {integrity: sha512-BXY1sDPEA1DgPwuENvDCD8B7Hb0toscjus941WpL8CVd10hg9pk/MWn9CNgwDO5Q9ks0mw+liDv2EMnleEjeNA==} + /turbo-windows-arm64/1.7.0: + resolution: {integrity: sha512-LzjOUzveWkvTD0jP8DBMYiAnYemmydsvqxdSmsUapHHJkl6wKZIOQNSO7pxsy+9XM/1/+0f9Y9F9ZNl5lePTEA==} cpu: [arm64] os: [win32] requiresBuild: true dev: false optional: true - /turbo/1.6.3: - resolution: {integrity: sha512-FtfhJLmEEtHveGxW4Ye/QuY85AnZ2ZNVgkTBswoap7UMHB1+oI4diHPNyqrQLG4K1UFtCkjOlVoLsllUh/9QRw==} + /turbo/1.7.0: + resolution: {integrity: sha512-cwympNwQNnQZ/TffBd8yT0i0O10Cf/hlxccCYgUcwhcGEb9rDjE5thDbHoHw1hlJQUF/5ua7ERJe7Zr0lNE/ww==} hasBin: true requiresBuild: true optionalDependencies: - turbo-darwin-64: 1.6.3 - turbo-darwin-arm64: 1.6.3 - turbo-linux-64: 1.6.3 - turbo-linux-arm64: 1.6.3 - turbo-windows-64: 1.6.3 - turbo-windows-arm64: 1.6.3 + turbo-darwin-64: 1.7.0 + turbo-darwin-arm64: 1.7.0 + turbo-linux-64: 1.7.0 + turbo-linux-arm64: 1.7.0 + turbo-windows-64: 1.7.0 + turbo-windows-arm64: 1.7.0 dev: false /type-check/0.4.0: @@ -10637,6 +10793,14 @@ packages: mime-types: 2.1.35 dev: false + /typed-array-length/1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + is-typed-array: 1.1.10 + dev: true + /typedarray-to-buffer/3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: @@ -11111,6 +11275,18 @@ packages: is-symbol: 1.0.4 dev: true + /which-typed-array/1.1.9: + resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.10 + dev: true + /which/1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true diff --git a/schema/package.json b/schema/package.json index 0ba03bf3..c525e818 100644 --- a/schema/package.json +++ b/schema/package.json @@ -9,7 +9,7 @@ "build": "tsc" }, "devDependencies": { - "eslint": "^8.31.0", + "eslint": "^8.32.0", "typescript": "^4.9.4" } } diff --git a/server/package.json b/server/package.json index 95530a1e..1680e84c 100644 --- a/server/package.json +++ b/server/package.json @@ -8,7 +8,7 @@ "start": "node dist/main" }, "dependencies": { - "@aws-sdk/client-s3": "^3.241.0", + "@aws-sdk/client-s3": "^3.252.0", "@nestjs/axios": "^1.0.1", "@nestjs/common": "^9.2.1", "@nestjs/config": "^2.2.0", @@ -35,15 +35,15 @@ "multer": "^1.4.5-lts.1", "nanoid": "3.3.4", "node-stream-zip": "^1.15.0", - "nodemailer": "^6.8.0", + "nodemailer": "^6.9.0", "passport": "^0.6.0", "passport-jwt": "^4.0.1", "passport-local": "^1.0.0", "pdf-lib": "^1.17.1", "pg": "^8.8.0", - "playwright-chromium": "^1.29.1", + "playwright-chromium": "^1.29.2", "reflect-metadata": "^0.1.13", - "rimraf": "^3.0.2", + "rimraf": "^4.1.1", "rxjs": "^7.8.0", "typeorm": "0.3.11", "uuid": "^9.0.0" @@ -60,9 +60,9 @@ "@types/node": "^18.11.18", "@types/nodemailer": "^6.4.7", "@types/passport-jwt": "^3.0.8", - "@types/passport-local": "^1.0.34", + "@types/passport-local": "^1.0.35", "@types/uuid": "^9.0.0", - "prettier": "^2.8.1", + "prettier": "^2.8.3", "source-map-support": "^0.5.21", "ts-loader": "^9.4.2", "ts-node": "^10.9.1",