- Free and{" "}
+ Made with 💜 by{" "}
- open source
- {" "}
- 💜
+ Alexander
+
Like the game?{" "}
diff --git a/apps/client/src/components/header.tsx b/apps/client/src/components/header.tsx
new file mode 100644
index 00000000..5d957535
--- /dev/null
+++ b/apps/client/src/components/header.tsx
@@ -0,0 +1,16 @@
+import { Session } from "next-auth";
+import Menu from "./menu";
+
+type HeaderProps = {
+ session: Session | null;
+};
+
+const Header = ({ session }: HeaderProps) => {
+ return (
+
+ );
+};
+
+export default Header;
diff --git a/apps/client/src/components/menu.tsx b/apps/client/src/components/menu.tsx
index 4b678a39..e3b2750b 100644
--- a/apps/client/src/components/menu.tsx
+++ b/apps/client/src/components/menu.tsx
@@ -15,11 +15,13 @@ import {
FiX,
FiVolume2,
FiVolumeX,
+ FiUser,
} from "react-icons/fi";
import { useStickyState } from "@ai/utils/hooks/use-sticky-state";
+import Link from "next/link";
type MenuProps = {
- session: Session;
+ session: Session | null;
roomCode?: string;
};
@@ -38,7 +40,7 @@ const Menu = ({ session, roomCode }: MenuProps) => {
};
const handleSignOutAndLeave = () => {
- if (roomCode) {
+ if (roomCode && session) {
socket.emit("leaveRoom", {
userId: session.user.id,
code: roomCode,
@@ -70,7 +72,7 @@ const Menu = ({ session, roomCode }: MenuProps) => {
{showMenu && (
{
}}
exit={{ scale: 0.9, opacity: 0 }}
>
+ {session && (
+
+
+ My Account
+
+
+ )}
-
-
-
+ {session && (
+
+
+
+ )}
)}
diff --git a/apps/client/src/utils/hooks/use-click-away.ts b/apps/client/src/utils/hooks/use-click-away.ts
index deeb16f0..671d036d 100644
--- a/apps/client/src/utils/hooks/use-click-away.ts
+++ b/apps/client/src/utils/hooks/use-click-away.ts
@@ -2,9 +2,9 @@ import { RefObject, useEffect, useRef } from "react";
const defaultEvents = ["mousedown", "touchstart"];
-const useClickAway = (
+const useClickAway = (
ref: RefObject,
- onClickAway: (event: E) => void,
+ onClickAway: (event: Event) => void,
events: string[] = defaultEvents,
) => {
const savedCallback = useRef(onClickAway);
@@ -12,7 +12,7 @@ const useClickAway = (
savedCallback.current = onClickAway;
}, [onClickAway]);
useEffect(() => {
- const handler = (event: E) => {
+ const handler = (event: Event) => {
const { current: el } = ref;
el && !el.contains(event.target as Node) && savedCallback.current(event);
};
diff --git a/apps/server/src/services/room.service.ts b/apps/server/src/services/room.service.ts
index dc2f8a7e..065421da 100644
--- a/apps/server/src/services/room.service.ts
+++ b/apps/server/src/services/room.service.ts
@@ -86,6 +86,10 @@ export async function getRoom({ code }: { code: string }) {
.select({
id: users.id,
nickname: users.nickname,
+ name: users.name,
+ email: users.email,
+ emailVerified: users.emailVerified,
+ image: users.image,
createdAt: users.createdAt,
})
.from(usersToRooms)
diff --git a/package.json b/package.json
index d2e5b777..e8db9443 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
- "eslint": "^8.49.0",
+ "eslint": "^8.50.0",
"prettier": "^3.0.3",
"tsconfig": "workspace:*",
"turbo": "^1.10.14"
diff --git a/packages/database/package.json b/packages/database/package.json
index 0b3672f8..39df13bb 100644
--- a/packages/database/package.json
+++ b/packages/database/package.json
@@ -19,7 +19,7 @@
"postgres": "^3.3.5"
},
"devDependencies": {
- "@auth/core": "^0.15.2",
+ "@auth/core": "^0.16.1",
"drizzle-kit": "^0.19.13",
"eslint-config-custom": "workspace:*",
"ts-node": "^10.9.1",
diff --git a/packages/eslint-config-custom/package.json b/packages/eslint-config-custom/package.json
index ee0024d4..fcb70a16 100644
--- a/packages/eslint-config-custom/package.json
+++ b/packages/eslint-config-custom/package.json
@@ -4,9 +4,9 @@
"version": "0.0.0",
"private": true,
"devDependencies": {
- "@typescript-eslint/eslint-plugin": "^6.7.3",
- "@typescript-eslint/parser": "^6.7.3",
- "eslint-config-next": "13.5.3",
+ "@typescript-eslint/eslint-plugin": "^6.7.4",
+ "@typescript-eslint/parser": "^6.7.4",
+ "eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^1.10.14"
}
diff --git a/packages/tsconfig/nextjs.json b/packages/tsconfig/nextjs.json
index 32bf9256..a8d68590 100644
--- a/packages/tsconfig/nextjs.json
+++ b/packages/tsconfig/nextjs.json
@@ -21,7 +21,7 @@
"module": "esnext",
"noEmit": true,
"resolveJsonModule": true,
- "strict": false,
+ "strict": true,
"target": "es6"
},
"include": [
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0aa1eb81..aaa6cd17 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,8 +9,8 @@ importers:
.:
devDependencies:
eslint:
- specifier: ^8.49.0
- version: 8.49.0
+ specifier: ^8.50.0
+ version: 8.50.0
prettier:
specifier: ^3.0.3
version: 3.0.3
@@ -24,14 +24,14 @@ importers:
apps/client:
dependencies:
'@auth/drizzle-adapter':
- specifier: ^0.3.2
- version: 0.3.2
+ specifier: ^0.3.3
+ version: 0.3.3
'@sentry/nextjs':
- specifier: ^7.72.0
- version: 7.72.0(next@13.5.3)(react@18.2.0)
+ specifier: ^7.73.0
+ version: 7.73.0(next@13.5.4)(react@18.2.0)
'@tanstack/react-query':
- specifier: ^4.35.3
- version: 4.35.3(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^4.35.7
+ version: 4.35.7(react-dom@18.2.0)(react@18.2.0)
'@upstash/ratelimit':
specifier: ^0.4.4
version: 0.4.4
@@ -43,7 +43,7 @@ importers:
version: 1.0.2
'@xstate/react':
specifier: ^3.2.2
- version: 3.2.2(@types/react@18.2.23)(react@18.2.0)(xstate@4.38.2)
+ version: 3.2.2(@types/react@18.2.24)(react@18.2.0)(xstate@4.38.2)
autoprefixer:
specifier: 10.4.16
version: 10.4.16(postcss@8.4.31)
@@ -60,11 +60,11 @@ importers:
specifier: ^10.16.4
version: 10.16.4(react-dom@18.2.0)(react@18.2.0)
next:
- specifier: ^13.5.3
- version: 13.5.3(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^13.5.4
+ version: 13.5.4(react-dom@18.2.0)(react@18.2.0)
next-auth:
- specifier: ^4.23.1
- version: 4.23.1(next@13.5.3)(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^4.23.2
+ version: 4.23.2(next@13.5.4)(react-dom@18.2.0)(react@18.2.0)
postcss:
specifier: 8.4.31
version: 8.4.31
@@ -119,11 +119,11 @@ importers:
specifier: ^0.5.10
version: 0.5.10(tailwindcss@3.3.3)
'@types/node':
- specifier: ^20.8.0
- version: 20.8.0
+ specifier: ^20.8.2
+ version: 20.8.2
'@types/react':
- specifier: ^18.2.23
- version: 18.2.23
+ specifier: ^18.2.24
+ version: 18.2.24
'@types/react-dom':
specifier: ^18.2.8
version: 18.2.8
@@ -131,8 +131,8 @@ importers:
specifier: workspace:*
version: link:../../packages/eslint-config-custom
prettier-plugin-tailwindcss:
- specifier: ^0.5.4
- version: 0.5.4(prettier@3.0.3)
+ specifier: ^0.5.5
+ version: 0.5.5(prettier@3.0.3)
tsconfig:
specifier: workspace:*
version: link:../../packages/tsconfig
@@ -245,8 +245,8 @@ importers:
version: 3.3.5
devDependencies:
'@auth/core':
- specifier: ^0.15.2
- version: 0.15.2
+ specifier: ^0.16.1
+ version: 0.16.1
drizzle-kit:
specifier: ^0.19.13
version: 0.19.13
@@ -255,7 +255,7 @@ importers:
version: link:../eslint-config-custom
ts-node:
specifier: ^10.9.1
- version: 10.9.1(@types/node@20.8.0)(typescript@5.2.2)
+ version: 10.9.1(@types/node@20.8.2)(typescript@5.2.2)
tsconfig:
specifier: workspace:*
version: link:../tsconfig
@@ -266,14 +266,14 @@ importers:
packages/eslint-config-custom:
devDependencies:
'@typescript-eslint/eslint-plugin':
- specifier: ^6.7.3
- version: 6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.50.0)(typescript@5.2.2)
+ specifier: ^6.7.4
+ version: 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.50.0)(typescript@5.2.2)
'@typescript-eslint/parser':
- specifier: ^6.7.3
- version: 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ specifier: ^6.7.4
+ version: 6.7.4(eslint@8.50.0)(typescript@5.2.2)
eslint-config-next:
- specifier: 13.5.3
- version: 13.5.3(eslint@8.50.0)(typescript@5.2.2)
+ specifier: 13.5.4
+ version: 13.5.4(eslint@8.50.0)(typescript@5.2.2)
eslint-config-prettier:
specifier: ^9.0.0
version: 9.0.0(eslint@8.50.0)
@@ -302,8 +302,8 @@ packages:
'@jridgewell/trace-mapping': 0.3.19
dev: true
- /@auth/core@0.12.0:
- resolution: {integrity: sha512-XYipdAc/nKu014VOgpcPyLlj1ghWlnwyloaB1UjQd9ElZRZQ9YpSizzXGLON23t/a0FyabOBBl0/awD2tW58Rg==}
+ /@auth/core@0.16.1:
+ resolution: {integrity: sha512-V+YifnjpyOadiiTbxfYDV2xYWo8xpKNtwYVskAEKUSwMvE0FlSlP+10QGBpf0axS/AJFOO61IR6GncFF/IOrHQ==}
peerDependencies:
nodemailer: ^6.8.0
peerDependenciesMeta:
@@ -312,32 +312,15 @@ packages:
dependencies:
'@panva/hkdf': 1.1.1
cookie: 0.5.0
- jose: 4.14.6
+ jose: 4.15.1
oauth4webapi: 2.3.0
preact: 10.11.3
preact-render-to-string: 5.2.3(preact@10.11.3)
- dev: false
- /@auth/core@0.15.2:
- resolution: {integrity: sha512-z79WfH+7Hub/DP3bd5/oiymi6zqSkpeltG2u/vvZrLUXTz3LHWXEVtSxYIusHXpzLpEGfDwnACkiFB4izP1wEg==}
- peerDependencies:
- nodemailer: ^6.8.0
- peerDependenciesMeta:
- nodemailer:
- optional: true
+ /@auth/drizzle-adapter@0.3.3:
+ resolution: {integrity: sha512-HD936/q+uQIYHu50rwkC0yoMUNt+3pkf1UPUIx6wARVmqoBzHqhMykN5X3I0twtPR/oy3OBTNSyWCDBTv4uUBA==}
dependencies:
- '@panva/hkdf': 1.1.1
- cookie: 0.5.0
- jose: 4.14.6
- oauth4webapi: 2.3.0
- preact: 10.11.3
- preact-render-to-string: 5.2.3(preact@10.11.3)
- dev: true
-
- /@auth/drizzle-adapter@0.3.2:
- resolution: {integrity: sha512-fHfzwaTomm/RKgFKBO5AJ8JTfR44rX1KX2ASaKRk+4jvVhDh9FCir5BV1Fv68b5ay7XBo9DtcNSQuZp4hbpLYw==}
- dependencies:
- '@auth/core': 0.12.0
+ '@auth/core': 0.16.1
transitivePeerDependencies:
- nodemailer
dev: false
@@ -914,16 +897,6 @@ packages:
dev: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.49.0):
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.49.0
- eslint-visitor-keys: 3.4.3
- dev: true
-
/@eslint-community/eslint-utils@4.4.0(eslint@8.50.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -934,13 +907,8 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
- /@eslint-community/regexpp@4.8.1:
- resolution: {integrity: sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==}
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- dev: true
-
- /@eslint-community/regexpp@4.9.0:
- resolution: {integrity: sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==}
+ /@eslint-community/regexpp@4.9.1:
+ resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
@@ -951,7 +919,7 @@ packages:
ajv: 6.12.6
debug: 4.3.4
espree: 9.6.1
- globals: 13.21.0
+ globals: 13.22.0
ignore: 5.2.4
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -961,11 +929,6 @@ packages:
- supports-color
dev: true
- /@eslint/js@8.49.0:
- resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
/@eslint/js@8.50.0:
resolution: {integrity: sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1257,18 +1220,18 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /@next/env@13.5.3:
- resolution: {integrity: sha512-X4te86vsbjsB7iO4usY9jLPtZ827Mbx+WcwNBGUOIuswuTAKQtzsuoxc/6KLxCMvogKG795MhrR1LDhYgDvasg==}
+ /@next/env@13.5.4:
+ resolution: {integrity: sha512-LGegJkMvRNw90WWphGJ3RMHMVplYcOfRWf2Be3td3sUa+1AaxmsYyANsA+znrGCBjXJNi4XAQlSoEfUxs/4kIQ==}
dev: false
- /@next/eslint-plugin-next@13.5.3:
- resolution: {integrity: sha512-lbZOoEjzSuTtpk9UgV9rOmxYw+PsSfNR+00mZcInqooiDMZ1u+RqT1YQYLsEZPW1kumZoQe5+exkCBtZ2xn0uw==}
+ /@next/eslint-plugin-next@13.5.4:
+ resolution: {integrity: sha512-vI94U+D7RNgX6XypSyjeFrOzxGlZyxOplU0dVE5norIfZGn/LDjJYPHdvdsR5vN1eRtl6PDAsOHmycFEOljK5A==}
dependencies:
glob: 7.1.7
dev: true
- /@next/swc-darwin-arm64@13.5.3:
- resolution: {integrity: sha512-6hiYNJxJmyYvvKGrVThzo4nTcqvqUTA/JvKim7Auaj33NexDqSNwN5YrrQu+QhZJCIpv2tULSHt+lf+rUflLSw==}
+ /@next/swc-darwin-arm64@13.5.4:
+ resolution: {integrity: sha512-Df8SHuXgF1p+aonBMcDPEsaahNo2TCwuie7VXED4FVyECvdXfRT9unapm54NssV9tF3OQFKBFOdlje4T43VO0w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -1276,8 +1239,8 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-x64@13.5.3:
- resolution: {integrity: sha512-UpBKxu2ob9scbpJyEq/xPgpdrgBgN3aLYlxyGqlYX5/KnwpJpFuIHU2lx8upQQ7L+MEmz+fA1XSgesoK92ppwQ==}
+ /@next/swc-darwin-x64@13.5.4:
+ resolution: {integrity: sha512-siPuUwO45PnNRMeZnSa8n/Lye5ZX93IJom9wQRB5DEOdFrw0JjOMu1GINB8jAEdwa7Vdyn1oJ2xGNaQpdQQ9Pw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -1285,8 +1248,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-gnu@13.5.3:
- resolution: {integrity: sha512-5AzM7Yx1Ky+oLY6pHs7tjONTF22JirDPd5Jw/3/NazJ73uGB05NqhGhB4SbeCchg7SlVYVBeRMrMSZwJwq/xoA==}
+ /@next/swc-linux-arm64-gnu@13.5.4:
+ resolution: {integrity: sha512-l/k/fvRP/zmB2jkFMfefmFkyZbDkYW0mRM/LB+tH5u9pB98WsHXC0WvDHlGCYp3CH/jlkJPL7gN8nkTQVrQ/2w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -1294,8 +1257,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-musl@13.5.3:
- resolution: {integrity: sha512-A/C1shbyUhj7wRtokmn73eBksjTM7fFQoY2v/0rTM5wehpkjQRLOXI8WJsag2uLhnZ4ii5OzR1rFPwoD9cvOgA==}
+ /@next/swc-linux-arm64-musl@13.5.4:
+ resolution: {integrity: sha512-YYGb7SlLkI+XqfQa8VPErljb7k9nUnhhRrVaOdfJNCaQnHBcvbT7cx/UjDQLdleJcfyg1Hkn5YSSIeVfjgmkTg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -1303,8 +1266,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-gnu@13.5.3:
- resolution: {integrity: sha512-FubPuw/Boz8tKkk+5eOuDHOpk36F80rbgxlx4+xty/U71e3wZZxVYHfZXmf0IRToBn1Crb8WvLM9OYj/Ur815g==}
+ /@next/swc-linux-x64-gnu@13.5.4:
+ resolution: {integrity: sha512-uE61vyUSClnCH18YHjA8tE1prr/PBFlBFhxBZis4XBRJoR+txAky5d7gGNUIbQ8sZZ7LVkSVgm/5Fc7mwXmRAg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -1312,8 +1275,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-musl@13.5.3:
- resolution: {integrity: sha512-DPw8nFuM1uEpbX47tM3wiXIR0Qa+atSzs9Q3peY1urkhofx44o7E1svnq+a5Q0r8lAcssLrwiM+OyJJgV/oj7g==}
+ /@next/swc-linux-x64-musl@13.5.4:
+ resolution: {integrity: sha512-qVEKFYML/GvJSy9CfYqAdUexA6M5AklYcQCW+8JECmkQHGoPxCf04iMh7CPR7wkHyWWK+XLt4Ja7hhsPJtSnhg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -1321,8 +1284,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-arm64-msvc@13.5.3:
- resolution: {integrity: sha512-zBPSP8cHL51Gub/YV8UUePW7AVGukp2D8JU93IHbVDu2qmhFAn9LWXiOOLKplZQKxnIPUkJTQAJDCWBWU4UWUA==}
+ /@next/swc-win32-arm64-msvc@13.5.4:
+ resolution: {integrity: sha512-mDSQfqxAlfpeZOLPxLymZkX0hYF3juN57W6vFHTvwKlnHfmh12Pt7hPIRLYIShk8uYRsKPtMTth/EzpwRI+u8w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -1330,8 +1293,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-ia32-msvc@13.5.3:
- resolution: {integrity: sha512-ONcL/lYyGUj4W37D4I2I450SZtSenmFAvapkJQNIJhrPMhzDU/AdfLkW98NvH1D2+7FXwe7yclf3+B7v28uzBQ==}
+ /@next/swc-win32-ia32-msvc@13.5.4:
+ resolution: {integrity: sha512-aoqAT2XIekIWoriwzOmGFAvTtVY5O7JjV21giozBTP5c6uZhpvTWRbmHXbmsjZqY4HnEZQRXWkSAppsIBweKqw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
@@ -1339,8 +1302,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-x64-msvc@13.5.3:
- resolution: {integrity: sha512-2Vz2tYWaLqJvLcWbbTlJ5k9AN6JD7a5CN2pAeIzpbecK8ZF/yobA39cXtv6e+Z8c5UJuVOmaTldEAIxvsIux/Q==}
+ /@next/swc-win32-x64-msvc@13.5.4:
+ resolution: {integrity: sha512-cyRvlAxwlddlqeB9xtPSfNSCRy8BOa4wtMo0IuI9P7Y0XT2qpDrpFKRyZ7kUngZis59mPVla5k8X1oOJ8RxDYg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -1410,8 +1373,8 @@ packages:
rollup: 2.78.0
dev: false
- /@rushstack/eslint-patch@1.5.0:
- resolution: {integrity: sha512-EF3948ckf3f5uPgYbQ6GhyA56Dmv8yg0+ir+BroRjwdxyZJsekhZzawOecC2rOTPCz173t7ZcR1HHZu0dZgOCw==}
+ /@rushstack/eslint-patch@1.5.1:
+ resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==}
dev: true
/@sentry-internal/tracing@7.72.0:
@@ -1424,15 +1387,25 @@ packages:
tslib: 2.6.2
dev: false
- /@sentry/browser@7.72.0:
- resolution: {integrity: sha512-fcFDTzqhPd3VZAmmYW3KvBTBaEfrKjPmRhlAsfhkGWYLCHqVkNtzsFER4cmUNRGNxjyt9tcG3WlTTqgLRucycQ==}
+ /@sentry-internal/tracing@7.73.0:
+ resolution: {integrity: sha512-ig3WL/Nqp8nRQ52P205NaypGKNfIl/G+cIqge9xPW6zfRb5kJdM1YParw9GSJ1SPjEZBkBORGAML0on5H2FILw==}
engines: {node: '>=8'}
dependencies:
- '@sentry-internal/tracing': 7.72.0
- '@sentry/core': 7.72.0
- '@sentry/replay': 7.72.0
- '@sentry/types': 7.72.0
- '@sentry/utils': 7.72.0
+ '@sentry/core': 7.73.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
+ tslib: 2.6.2
+ dev: false
+
+ /@sentry/browser@7.73.0:
+ resolution: {integrity: sha512-e301hUixcJ5+HNKCJwajFF5smF4opXEFSclyWsJuFNufv5J/1C1SDhbwG2JjBt5zzdSoKWJKT1ewR6vpICyoDw==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry-internal/tracing': 7.73.0
+ '@sentry/core': 7.73.0
+ '@sentry/replay': 7.73.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
tslib: 2.6.2
dev: false
@@ -1478,18 +1451,28 @@ packages:
tslib: 2.6.2
dev: false
- /@sentry/integrations@7.72.0:
- resolution: {integrity: sha512-ay2WgLtjsr0WS8+N7i7VmKzondoZRh3ISx8rb91LjmVrDNu8baleZAB59jkKe/JSy0gYh99umJuptc2te/65+A==}
+ /@sentry/core@7.73.0:
+ resolution: {integrity: sha512-9FEz4Gq848LOgVN2OxJGYuQqxv7cIVw69VlAzWHEm3njt8mjvlTq+7UiFsGRo84+59V2FQuHxzA7vVjl90WfSg==}
engines: {node: '>=8'}
dependencies:
- '@sentry/types': 7.72.0
- '@sentry/utils': 7.72.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
+ tslib: 2.6.2
+ dev: false
+
+ /@sentry/integrations@7.73.0:
+ resolution: {integrity: sha512-IjVpn4d+aSL9L1Ntu/oAdRwujz4BzzavDsZf96Xgc/AjBnjAEUT+wT1dAwluThfuKDXmWOJHhZ2cHHMfqI+7vw==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/core': 7.73.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
localforage: 1.10.0
tslib: 2.6.2
dev: false
- /@sentry/nextjs@7.72.0(next@13.5.3)(react@18.2.0):
- resolution: {integrity: sha512-8S7OHPwFUwm2Ci9lC9lIwsXwNzxgq/lS84RDPma2ChPQv8rbxivVtDArQl/jgr4wn6WJ2UyDKsoic+TbgIumNw==}
+ /@sentry/nextjs@7.73.0(next@13.5.4)(react@18.2.0):
+ resolution: {integrity: sha512-WTTxb3xFFpQ9u8jLx2jXa5oJIlgQs3kQ7wjHoTVOuuk51kB3wtMvq546tA5Kmsgu5uInjznBe4f2qUFYdqiO9Q==}
engines: {node: '>=8'}
peerDependencies:
next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0
@@ -1500,16 +1483,16 @@ packages:
optional: true
dependencies:
'@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0)
- '@sentry/core': 7.72.0
- '@sentry/integrations': 7.72.0
- '@sentry/node': 7.72.0
- '@sentry/react': 7.72.0(react@18.2.0)
- '@sentry/types': 7.72.0
- '@sentry/utils': 7.72.0
- '@sentry/vercel-edge': 7.72.0
+ '@sentry/core': 7.73.0
+ '@sentry/integrations': 7.73.0
+ '@sentry/node': 7.73.0
+ '@sentry/react': 7.73.0(react@18.2.0)
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
+ '@sentry/vercel-edge': 7.73.0
'@sentry/webpack-plugin': 1.20.0
chalk: 3.0.0
- next: 13.5.3(react-dom@18.2.0)(react@18.2.0)
+ next: 13.5.4(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
rollup: 2.78.0
stacktrace-parser: 0.1.10
@@ -1535,27 +1518,43 @@ packages:
- supports-color
dev: false
- /@sentry/react@7.72.0(react@18.2.0):
- resolution: {integrity: sha512-BYFO3uyB9FfdUq05NtsS+OfU636HMZ7avbSEALo24x+OPuaD+fCByTdgxYVpDRYrBPa7lALYzCge0PDcGnGiig==}
+ /@sentry/node@7.73.0:
+ resolution: {integrity: sha512-i50bRfmgkRRx0XXUbg9jGD/RuznDJxJXc4rBILhoJuhl+BjRIaoXA3ayplfJn8JLZxsNh75uJaCq4IUK70SORw==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry-internal/tracing': 7.73.0
+ '@sentry/core': 7.73.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
+ cookie: 0.5.0
+ https-proxy-agent: 5.0.1
+ lru_map: 0.3.3
+ tslib: 2.6.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@sentry/react@7.73.0(react@18.2.0):
+ resolution: {integrity: sha512-RCGlxW0Xp5vsC38LGxUO0Xf11LBzfg75VN+KS3D2FS5GXl0R0JwgUyPNVlod7YMCfwytsKGhfP+YpQvHGQAVwg==}
engines: {node: '>=8'}
peerDependencies:
react: 15.x || 16.x || 17.x || 18.x
dependencies:
- '@sentry/browser': 7.72.0
- '@sentry/types': 7.72.0
- '@sentry/utils': 7.72.0
+ '@sentry/browser': 7.73.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
hoist-non-react-statics: 3.3.2
react: 18.2.0
tslib: 2.6.2
dev: false
- /@sentry/replay@7.72.0:
- resolution: {integrity: sha512-dHH/mYCFBwJ/kYmL9L5KihjwQKcefiuvcH0otHSwKSpbbeEoM/BV+SHQoYGd6OMSYnL9fq1dHfF7Zo26p5Yu0Q==}
+ /@sentry/replay@7.73.0:
+ resolution: {integrity: sha512-a8IC9SowBisLYD2IdLkXzx7gN4iVwHDJhQvLp2B8ARs1PyPjJ7gCxSMHeGrYp94V0gOXtorNYkrxvuX8ayPROA==}
engines: {node: '>=12'}
dependencies:
- '@sentry/core': 7.72.0
- '@sentry/types': 7.72.0
- '@sentry/utils': 7.72.0
+ '@sentry/core': 7.73.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
dev: false
/@sentry/types@7.72.0:
@@ -1563,6 +1562,11 @@ packages:
engines: {node: '>=8'}
dev: false
+ /@sentry/types@7.73.0:
+ resolution: {integrity: sha512-/v8++bly8jW7r4cP2wswYiiVpn7eLLcqwnfPUMeCQze4zj3F3nTRIKc9BGHzU0V+fhHa3RwRC2ksqTGq1oJMDg==}
+ engines: {node: '>=8'}
+ dev: false
+
/@sentry/utils@7.72.0:
resolution: {integrity: sha512-o/MtqI7WJXuswidH0bSgBP40KN2lrnyQEIx5uoyJUJi/QEaboIsqbxU62vaFJpde8SYrbA+rTnP3J3ujF2gUag==}
engines: {node: '>=8'}
@@ -1571,13 +1575,21 @@ packages:
tslib: 2.6.2
dev: false
- /@sentry/vercel-edge@7.72.0:
- resolution: {integrity: sha512-H2A+59jVKgQ2E4EQh5nFBqfJ0foEGh+aGItdvbq7PcJSI1sosA4sDeY6pQzoFtdMLL23FC7dojOxOI5b3JTtmg==}
+ /@sentry/utils@7.73.0:
+ resolution: {integrity: sha512-h3ZK/qpf4k76FhJV9uiSbvMz3V/0Ovy94C+5/9UgPMVCJXFmVsdw8n/dwANJ7LupVPfYP23xFGgebDMFlK1/2w==}
engines: {node: '>=8'}
dependencies:
- '@sentry/core': 7.72.0
- '@sentry/types': 7.72.0
- '@sentry/utils': 7.72.0
+ '@sentry/types': 7.73.0
+ tslib: 2.6.2
+ dev: false
+
+ /@sentry/vercel-edge@7.73.0:
+ resolution: {integrity: sha512-5EIJAuHG9w2OBrG76uH51Zlh4SMg3N8n29YiZgOtsBL0FU7AvBpxsIknECmmQOKPFrfCa0ycu2WSWgFXILCYGQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@sentry/core': 7.73.0
+ '@sentry/types': 7.73.0
+ '@sentry/utils': 7.73.0
tslib: 2.6.2
dev: false
@@ -1630,12 +1642,12 @@ packages:
tailwindcss: 3.3.3
dev: true
- /@tanstack/query-core@4.35.3:
- resolution: {integrity: sha512-PS+WEjd9wzKTyNjjQymvcOe1yg8f3wYc6mD+vb6CKyZAKvu4sIJwryfqfBULITKCla7P9C4l5e9RXePHvZOZeQ==}
+ /@tanstack/query-core@4.35.7:
+ resolution: {integrity: sha512-PgDJtX75ubFS0WCYFM7DqEoJ4QbxU3S5OH3gJSI40xr7UVVax3/J4CM3XUMOTs+EOT5YGEfssi3tfRVGte4DEw==}
dev: false
- /@tanstack/react-query@4.35.3(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-UgTPioip/rGG3EQilXfA2j4BJkhEQsR+KAbF+KIuvQ7j4MkgnTCJF01SfRpIRNtQTlEfz/+IL7+jP8WA8bFbsw==}
+ /@tanstack/react-query@4.35.7(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-0MankquP/6EOM2ATfEov6ViiKemey5uTbjGlFMX1xGotwNaqC76YKDMJdHumZupPbZcZPWAeoPGEHQmVKIKoOQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -1646,7 +1658,7 @@ packages:
react-native:
optional: true
dependencies:
- '@tanstack/query-core': 4.35.3
+ '@tanstack/query-core': 4.35.7
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
use-sync-external-store: 1.2.0(react@18.2.0)
@@ -1798,8 +1810,12 @@ packages:
/@types/node@20.8.0:
resolution: {integrity: sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ==}
- /@types/prop-types@15.7.7:
- resolution: {integrity: sha512-FbtmBWCcSa2J4zL781Zf1p5YUBXQomPEcep9QZCfRfQgTxz3pJWiDFLebohZ9fFntX5ibzOkSsrJ0TEew8cAog==}
+ /@types/node@20.8.2:
+ resolution: {integrity: sha512-Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w==}
+ dev: true
+
+ /@types/prop-types@15.7.8:
+ resolution: {integrity: sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==}
/@types/qs@6.9.8:
resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==}
@@ -1812,13 +1828,13 @@ packages:
/@types/react-dom@18.2.8:
resolution: {integrity: sha512-bAIvO5lN/U8sPGvs1Xm61rlRHHaq5rp5N3kp9C+NJ/Q41P8iqjkXSu0+/qu8POsjH9pNWb0OYabFez7taP7omw==}
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
dev: true
- /@types/react@18.2.23:
- resolution: {integrity: sha512-qHLW6n1q2+7KyBEYnrZpcsAmU/iiCh9WGCKgXvMxx89+TYdJWRjZohVIo9XTcoLhfX3+/hP0Pbulu3bCZQ9PSA==}
+ /@types/react@18.2.24:
+ resolution: {integrity: sha512-Ee0Jt4sbJxMu1iDcetZEIKQr99J1Zfb6D4F3qfUWoR1JpInkY1Wdg4WwCyBjL257D0+jGqSl1twBjV8iCaC0Aw==}
dependencies:
- '@types/prop-types': 15.7.7
+ '@types/prop-types': 15.7.8
'@types/scheduler': 0.16.4
csstype: 3.1.2
@@ -1858,8 +1874,8 @@ packages:
'@types/yargs-parser': 21.0.1
dev: true
- /@typescript-eslint/eslint-plugin@6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA==}
+ /@typescript-eslint/eslint-plugin@6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -1869,12 +1885,12 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.9.0
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 6.7.3
- '@typescript-eslint/type-utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@eslint-community/regexpp': 4.9.1
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.7.4
+ '@typescript-eslint/type-utils': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.4
debug: 4.3.4
eslint: 8.50.0
graphemer: 1.4.0
@@ -1887,8 +1903,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@6.7.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ==}
+ /@typescript-eslint/parser@6.7.4(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -1897,10 +1913,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.7.3
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@typescript-eslint/scope-manager': 6.7.4
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.4
debug: 4.3.4
eslint: 8.50.0
typescript: 5.2.2
@@ -1908,16 +1924,16 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/scope-manager@6.7.3:
- resolution: {integrity: sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ==}
+ /@typescript-eslint/scope-manager@6.7.4:
+ resolution: {integrity: sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/visitor-keys': 6.7.4
dev: true
- /@typescript-eslint/type-utils@6.7.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-Fc68K0aTDrKIBvLnKTZ5Pf3MXK495YErrbHb1R6aTpfK5OdSFj0rVN7ib6Tx6ePrZ2gsjLqr0s98NG7l96KSQw==}
+ /@typescript-eslint/type-utils@6.7.4(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -1926,8 +1942,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
debug: 4.3.4
eslint: 8.50.0
ts-api-utils: 1.0.3(typescript@5.2.2)
@@ -1936,13 +1952,13 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/types@6.7.3:
- resolution: {integrity: sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw==}
+ /@typescript-eslint/types@6.7.4:
+ resolution: {integrity: sha512-o9XWK2FLW6eSS/0r/tgjAGsYasLAnOWg7hvZ/dGYSSNjCh+49k5ocPN8OmG5aZcSJ8pclSOyVKP2x03Sj+RrCA==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
- /@typescript-eslint/typescript-estree@6.7.3(typescript@5.2.2):
- resolution: {integrity: sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g==}
+ /@typescript-eslint/typescript-estree@6.7.4(typescript@5.2.2):
+ resolution: {integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -1950,8 +1966,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/visitor-keys': 6.7.4
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -1962,8 +1978,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils@6.7.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-vzLkVder21GpWRrmSR9JxGZ5+ibIUSudXlW52qeKpzUEQhRSmyZiVDDj3crAth7+5tmN1ulvgKaCU2f/bPRCzg==}
+ /@typescript-eslint/utils@6.7.4(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -1971,9 +1987,9 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
'@types/json-schema': 7.0.13
'@types/semver': 7.5.3
- '@typescript-eslint/scope-manager': 6.7.3
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.7.4
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
eslint: 8.50.0
semver: 7.5.4
transitivePeerDependencies:
@@ -1981,11 +1997,11 @@ packages:
- typescript
dev: true
- /@typescript-eslint/visitor-keys@6.7.3:
- resolution: {integrity: sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg==}
+ /@typescript-eslint/visitor-keys@6.7.4:
+ resolution: {integrity: sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.3
+ '@typescript-eslint/types': 6.7.4
eslint-visitor-keys: 3.4.3
dev: true
@@ -2018,7 +2034,7 @@ packages:
resolution: {integrity: sha512-BZFxVrv24VbNNl5xMxqUojQIegEeXMI6rX3rg1uVLYUEXsuKNBSAEQf4BWEcjQDp/8aYJOj6m8V4PUA3x/cxgg==}
dev: false
- /@xstate/react@3.2.2(@types/react@18.2.23)(react@18.2.0)(xstate@4.38.2):
+ /@xstate/react@3.2.2(@types/react@18.2.24)(react@18.2.0)(xstate@4.38.2):
resolution: {integrity: sha512-feghXWLedyq8JeL13yda3XnHPZKwYDN5HPBLykpLeuNpr9178tQd2/3d0NrH6gSd0sG5mLuLeuD+ck830fgzLQ==}
peerDependencies:
'@xstate/fsm': ^2.0.0
@@ -2031,7 +2047,7 @@ packages:
optional: true
dependencies:
react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.23)(react@18.2.0)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.24)(react@18.2.0)
use-sync-external-store: 1.2.0(react@18.2.0)
xstate: 4.38.2
transitivePeerDependencies:
@@ -2248,7 +2264,7 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.22.1
- caniuse-lite: 1.0.30001541
+ caniuse-lite: 1.0.30001543
fraction.js: 4.3.6
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -2503,6 +2519,10 @@ packages:
/caniuse-lite@1.0.30001541:
resolution: {integrity: sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==}
+ /caniuse-lite@1.0.30001543:
+ resolution: {integrity: sha512-qxdO8KPWPQ+Zk6bvNpPeQIOH47qZSYdFZd6dXQzb2KzhnSXju4Kd7H1PkSJx6NICSMgo/IhRZRhhfPTHYpJUCA==}
+ dev: false
+
/chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -2958,7 +2978,7 @@ packages:
hanji: 0.0.5
json-diff: 0.9.0
minimatch: 7.4.6
- zod: 3.22.2
+ zod: 3.22.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -3127,7 +3147,7 @@ packages:
get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
- has: 1.0.3
+ has: 1.0.4
has-property-descriptors: 1.0.0
has-proto: 1.0.1
has-symbols: 1.0.3
@@ -3181,14 +3201,14 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.2.1
- has: 1.0.3
+ has: 1.0.4
has-tostringtag: 1.0.0
dev: true
/es-shim-unscopables@1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
- has: 1.0.3
+ has: 1.0.4
dev: true
/es-to-primitive@1.2.1:
@@ -3298,8 +3318,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /eslint-config-next@13.5.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-VN2qbCpq2DMWgs7SVF8KTmc8bVaWz3s4nmcFqRLs7PNBt5AXejOhJuZ4zg2sCEHOvz5RvqdwLeI++NSCV6qHVg==}
+ /eslint-config-next@13.5.4(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-FzQGIj4UEszRX7fcRSJK6L1LrDiVZvDFW320VVntVKh3BSU8Fb9kpaoxQx0cdFgf3MQXdeSbrCXJ/5Z/NndDkQ==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1'
@@ -3307,13 +3327,13 @@ packages:
typescript:
optional: true
dependencies:
- '@next/eslint-plugin-next': 13.5.3
- '@rushstack/eslint-patch': 1.5.0
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@next/eslint-plugin-next': 13.5.4
+ '@rushstack/eslint-patch': 1.5.1
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.50.0)
eslint-plugin-react: 7.33.2(eslint@8.50.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.50.0)
@@ -3351,7 +3371,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0):
+ /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0):
resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -3361,8 +3381,8 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.15.0
eslint: 8.50.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
fast-glob: 3.3.1
get-tsconfig: 4.7.2
is-core-module: 2.13.0
@@ -3374,7 +3394,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -3395,16 +3415,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
debug: 3.2.7(supports-color@5.5.0)
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
+ /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==}
engines: {node: '>=4'}
peerDependencies:
@@ -3414,7 +3434,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
@@ -3423,8 +3443,8 @@ packages:
doctrine: 2.1.0
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
- has: 1.0.3
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ has: 1.0.4
is-core-module: 2.13.0
is-glob: 4.0.3
minimatch: 3.1.2
@@ -3455,7 +3475,7 @@ packages:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
eslint: 8.50.0
- has: 1.0.3
+ has: 1.0.4
jsx-ast-utils: 3.3.5
language-tags: 1.0.5
minimatch: 3.1.2
@@ -3520,59 +3540,13 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint@8.49.0:
- resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- hasBin: true
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0)
- '@eslint-community/regexpp': 4.8.1
- '@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.49.0
- '@humanwhocodes/config-array': 0.11.11
- '@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
- doctrine: 3.0.0
- escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
- esquery: 1.5.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
- find-up: 5.0.0
- glob-parent: 6.0.2
- globals: 13.21.0
- graphemer: 1.4.0
- ignore: 5.2.4
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-yaml: 4.1.0
- json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.3
- strip-ansi: 6.0.1
- text-table: 0.2.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/eslint@8.50.0:
resolution: {integrity: sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
- '@eslint-community/regexpp': 4.9.0
+ '@eslint-community/regexpp': 4.9.1
'@eslint/eslintrc': 2.1.2
'@eslint/js': 8.50.0
'@humanwhocodes/config-array': 0.11.11
@@ -4028,13 +4002,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /globals@13.21.0:
- resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==}
- engines: {node: '>=8'}
- dependencies:
- type-fest: 0.20.2
- dev: true
-
/globals@13.22.0:
resolution: {integrity: sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==}
engines: {node: '>=8'}
@@ -4129,6 +4096,11 @@ packages:
dependencies:
function-bind: 1.1.1
+ /has@1.0.4:
+ resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
+ engines: {node: '>= 0.4.0'}
+ dev: true
+
/heap@0.2.7:
resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
dev: true
@@ -4241,7 +4213,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.2.1
- has: 1.0.3
+ has: 1.0.4
side-channel: 1.0.4
dev: true
@@ -4956,8 +4928,8 @@ packages:
resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==}
hasBin: true
- /jose@4.14.6:
- resolution: {integrity: sha512-EqJPEUlZD0/CSUMubKtMaYUOtWe91tZXTWMJZoKSbLk+KtdhNdcvppH8lA9XwVu2V4Ailvsj0GBZJ2ZwDjfesQ==}
+ /jose@4.15.1:
+ resolution: {integrity: sha512-CinpaEMmwb/59YG0N6SC3DY1imdTU5iNl08HPWR7NdyxACPeFuQbqjaocEjCDGq04KbnxSqQu702vL3ZTvKe5w==}
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -5328,8 +5300,8 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /next-auth@4.23.1(next@13.5.3)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-mL083z8KgRtlrIV6CDca2H1kduWJuK/3pTS0Fe2og15KOm4v2kkLGdSDfc2g+019aEBrJUT0pPW2Xx42ImN1WA==}
+ /next-auth@4.23.2(next@13.5.4)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-VRmInu0r/yZNFQheDFeOKtiugu3bt90Po3owAQDnFQ3YLQFmUKgFjcE2+3L0ny5jsJpBXaKbm7j7W2QTc6Ye2A==}
peerDependencies:
next: ^12.2.5 || ^13
nodemailer: ^6.6.5
@@ -5342,12 +5314,12 @@ packages:
'@babel/runtime': 7.23.1
'@panva/hkdf': 1.1.1
cookie: 0.5.0
- jose: 4.14.6
- next: 13.5.3(react-dom@18.2.0)(react@18.2.0)
+ jose: 4.15.1
+ next: 13.5.4(react-dom@18.2.0)(react@18.2.0)
oauth: 0.9.15
- openid-client: 5.5.0
- preact: 10.18.0
- preact-render-to-string: 5.2.6(preact@10.18.0)
+ openid-client: 5.6.0
+ preact: 10.18.1
+ preact-render-to-string: 5.2.6(preact@10.18.1)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
uuid: 8.3.2
@@ -5357,8 +5329,8 @@ packages:
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
dev: true
- /next@13.5.3(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-4Nt4HRLYDW/yRpJ/QR2t1v63UOMS55A38dnWv3UDOWGezuY0ZyFO1ABNbD7mulVzs9qVhgy2+ppjdsANpKP1mg==}
+ /next@13.5.4(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-+93un5S779gho8y9ASQhb/bTkQF17FNQOtXLKAj3lsNgltEcF0C5PMLLncDmH+8X1EnJH1kbqAERa29nRXqhjA==}
engines: {node: '>=16.14.0'}
hasBin: true
peerDependencies:
@@ -5372,26 +5344,25 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 13.5.3
+ '@next/env': 13.5.4
'@swc/helpers': 0.5.2
busboy: 1.6.0
- caniuse-lite: 1.0.30001541
- postcss: 8.4.14
+ caniuse-lite: 1.0.30001543
+ postcss: 8.4.31
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
styled-jsx: 5.1.1(react@18.2.0)
watchpack: 2.4.0
- zod: 3.21.4
optionalDependencies:
- '@next/swc-darwin-arm64': 13.5.3
- '@next/swc-darwin-x64': 13.5.3
- '@next/swc-linux-arm64-gnu': 13.5.3
- '@next/swc-linux-arm64-musl': 13.5.3
- '@next/swc-linux-x64-gnu': 13.5.3
- '@next/swc-linux-x64-musl': 13.5.3
- '@next/swc-win32-arm64-msvc': 13.5.3
- '@next/swc-win32-ia32-msvc': 13.5.3
- '@next/swc-win32-x64-msvc': 13.5.3
+ '@next/swc-darwin-arm64': 13.5.4
+ '@next/swc-darwin-x64': 13.5.4
+ '@next/swc-linux-arm64-gnu': 13.5.4
+ '@next/swc-linux-arm64-musl': 13.5.4
+ '@next/swc-linux-x64-gnu': 13.5.4
+ '@next/swc-linux-x64-musl': 13.5.4
+ '@next/swc-win32-arm64-msvc': 13.5.4
+ '@next/swc-win32-ia32-msvc': 13.5.4
+ '@next/swc-win32-x64-msvc': 13.5.4
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -5589,10 +5560,10 @@ packages:
mimic-fn: 2.1.0
dev: true
- /openid-client@5.5.0:
- resolution: {integrity: sha512-Y7Xl8BgsrkzWLHkVDYuroM67hi96xITyEDSkmWaGUiNX6CkcXC3XyQGdv5aWZ6dukVKBFVQCADi9gCavOmU14w==}
+ /openid-client@5.6.0:
+ resolution: {integrity: sha512-uFTkN/iqgKvSnmpVAS/T6SNThukRMBcmymTQ71Ngus1F60tdtKVap7zCrleocY+fogPtpmoxi5Q1YdrgYuTlkA==}
dependencies:
- jose: 4.14.6
+ jose: 4.15.1
lru-cache: 6.0.0
object-hash: 2.2.0
oidc-token-hash: 5.0.3
@@ -5792,15 +5763,6 @@ packages:
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss@8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.6
- picocolors: 1.0.0
- source-map-js: 1.0.2
- dev: false
-
/postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -5821,20 +5783,20 @@ packages:
preact: 10.11.3
pretty-format: 3.8.0
- /preact-render-to-string@5.2.6(preact@10.18.0):
+ /preact-render-to-string@5.2.6(preact@10.18.1):
resolution: {integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==}
peerDependencies:
preact: '>=10'
dependencies:
- preact: 10.18.0
+ preact: 10.18.1
pretty-format: 3.8.0
dev: false
/preact@10.11.3:
resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==}
- /preact@10.18.0:
- resolution: {integrity: sha512-O4dGFmErPd3RNVDvXmCbOW6hetnve6vYtjx5qf51mCUmBS96s66MrNQkEII5UThDGoNF7953ptA+aNupiDxVeg==}
+ /preact@10.18.1:
+ resolution: {integrity: sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg==}
dev: false
/prebuild-install@7.1.1:
@@ -5861,8 +5823,8 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
- /prettier-plugin-tailwindcss@0.5.4(prettier@3.0.3):
- resolution: {integrity: sha512-QZzzB1bID6qPsKHTeA9qPo1APmmxfFrA5DD3LQ+vbTmAnY40eJI7t9Q1ocqel2EKMWNPLJqdTDWZj1hKYgqSgg==}
+ /prettier-plugin-tailwindcss@0.5.5(prettier@3.0.3):
+ resolution: {integrity: sha512-voy0CjWv/CM8yeaduv5ZwovovpTGMR5LbzlhGF+LtEvMJt9wBeVTVnW781hL38R/RcDXCJwN2rolsgr94B/n0Q==}
engines: {node: '>=14.21.3'}
peerDependencies:
'@ianvs/prettier-plugin-sort-imports': '*'
@@ -6846,6 +6808,37 @@ packages:
yn: 3.1.1
dev: true
+ /ts-node@10.9.1(@types/node@20.8.2)(typescript@5.2.2):
+ resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
+ hasBin: true
+ peerDependencies:
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ '@swc/wasm':
+ optional: true
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.9
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.8.2
+ acorn: 8.10.0
+ acorn-walk: 8.2.0
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.2.2
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ dev: true
+
/tsconfig-paths@3.14.2:
resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
dependencies:
@@ -7045,7 +7038,7 @@ packages:
punycode: 2.3.0
dev: true
- /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.23)(react@18.2.0):
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -7054,7 +7047,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
dev: false
@@ -7294,9 +7287,10 @@ packages:
engines: {node: '>=10'}
dev: true
- /zod@3.21.4:
- resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
- dev: false
-
/zod@3.22.2:
resolution: {integrity: sha512-wvWkphh5WQsJbVk1tbx1l1Ly4yg+XecD+Mq280uBGt9wa5BKSWf4Mhp6GmrkPixhMxmabYY7RbzlwVP32pbGCg==}
+ dev: false
+
+ /zod@3.22.3:
+ resolution: {integrity: sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==}
+ dev: true