diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs
index cf9c4041..6a940991 100644
--- a/apps/web/next.config.mjs
+++ b/apps/web/next.config.mjs
@@ -3,30 +3,45 @@
import bundleAnalyzer from "@next/bundle-analyzer";
import { withSentryConfig } from "@sentry/nextjs";
+const shouldRunBundleAnalyzer = process.env.ANALYZE === "true";
+const svgComponentLoaders = ["@svgr/webpack"];
+
const withBundleAnalyzer = bundleAnalyzer({
- enabled: process.env.ANALYZE === "true",
+ enabled: shouldRunBundleAnalyzer,
});
+const imageRemotePatterns = [
+ "k.kakaocdn.net",
+ "cdn.default.solid-connection.com",
+ "cdn.upload.solid-connection.com",
+].map((hostname) => ({
+ protocol: "https",
+ hostname,
+}));
+
/** @type {import('next').NextConfig} */
const nextConfig = {
- swcMinify: true,
transpilePackages: ["@solid-connect/ai-inspector"],
+ turbopack: {
+ rules: {
+ "*.svg": {
+ loaders: svgComponentLoaders,
+ as: "*.js",
+ },
+ },
+ },
images: {
unoptimized: true,
- domains: ["k.kakaocdn.net", "cdn.default.solid-connection.com", "cdn.upload.solid-connection.com"],
+ remotePatterns: imageRemotePatterns,
formats: ["image/avif", "image/webp"],
deviceSizes: [360, 640, 768, 1024, 1280],
},
- // 폰트 최적화 설정
- optimizeFonts: true,
// 압축 활성화
compress: true,
// 정적 리소스 최적화
experimental: {
optimizeCss: true,
gzipSize: true,
- // Sentry instrumentation 활성화 (Web Vitals 수집에 필요)
- instrumentationHook: true,
optimizePackageImports: [
"lucide-react",
"@radix-ui/react-select",
@@ -41,39 +56,38 @@ const nextConfig = {
"@hookform/resolvers",
],
},
- eslint: {
- // Warning: This allows production builds to successfully complete even if
- // your project has ESLint errors.
- ignoreDuringBuilds: true,
- },
typescript: {
ignoreBuildErrors: true,
},
- webpack: (config) => {
- // CSS 최적화 - ensure nested objects exist
- if (!config.optimization) {
- config.optimization = {};
- }
- if (!config.optimization.splitChunks) {
- config.optimization.splitChunks = {};
- }
- if (!config.optimization.splitChunks.cacheGroups) {
- config.optimization.splitChunks.cacheGroups = {};
- }
+ ...(shouldRunBundleAnalyzer
+ ? {
+ webpack: (config) => {
+ // Bundle analyzer still runs through webpack because it is webpack-plugin based.
+ if (!config.optimization) {
+ config.optimization = {};
+ }
+ if (!config.optimization.splitChunks) {
+ config.optimization.splitChunks = {};
+ }
+ if (!config.optimization.splitChunks.cacheGroups) {
+ config.optimization.splitChunks.cacheGroups = {};
+ }
- config.optimization.splitChunks.cacheGroups.styles = {
- name: "styles",
- test: /\.(css|scss)$/,
- chunks: "all",
- enforce: true,
- };
+ config.optimization.splitChunks.cacheGroups.styles = {
+ name: "styles",
+ test: /\.(css|scss)$/,
+ chunks: "all",
+ enforce: true,
+ };
- config.module.rules.push({
- test: /\.svg$/,
- use: ["@svgr/webpack"],
- });
- return config;
- },
+ config.module.rules.push({
+ test: /\.svg$/,
+ use: svgComponentLoaders,
+ });
+ return config;
+ },
+ }
+ : {}),
};
export default withSentryConfig(
diff --git a/apps/web/package.json b/apps/web/package.json
index 051704f8..56481ee3 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -13,11 +13,11 @@
"typecheck": "tsc --noEmit",
"typecheck:ci": "tsc --noEmit -p tsconfig.ci.json",
"ci:check": "pnpm run lint:check && pnpm run typecheck:ci",
- "analyze": "ANALYZE=true next build"
+ "analyze": "ANALYZE=true next build --webpack"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
- "@next/third-parties": "^14.2.4",
+ "@next/third-parties": "^16.2.6",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
@@ -37,10 +37,10 @@
"linkify-react": "^4.3.2",
"linkifyjs": "^4.3.2",
"lucide-react": "^0.479.0",
- "next": "^14.2.35",
+ "next": "^16.2.6",
"next-render-analyzer": "^0.1.2",
- "react": "^18",
- "react-dom": "^18",
+ "react": "^19.2.6",
+ "react-dom": "^19.2.6",
"react-hook-form": "^7.60.0",
"react-hot-toast": "^2.6.0",
"sockjs-client": "^1.6.1",
@@ -50,10 +50,10 @@
"zustand": "^5.0.7"
},
"devDependencies": {
- "@next/bundle-analyzer": "^16.1.6",
+ "@next/bundle-analyzer": "^16.2.6",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.11.19",
- "@types/react": "19.2.10",
+ "@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.4.20",
"critters": "^0.0.23",
diff --git a/apps/web/sentry.client.config.ts b/apps/web/sentry.client.config.ts
deleted file mode 100644
index d8604a2a..00000000
--- a/apps/web/sentry.client.config.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-import * as Sentry from "@sentry/nextjs";
-
-// 프로덕션 환경에서만 Sentry 초기화
-if (process.env.NODE_ENV === "production") {
- Sentry.init({
- dsn: process.env.NEXT_PUBLIC_SENTRY_DSN || process.env.SENTRY_DSN || "",
- environment: process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT || process.env.SENTRY_ENVIRONMENT || "production",
-
- // Adds request headers and IP for users
- // https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/options/#sendDefaultPii
- sendDefaultPii: true,
-
- // Performance Monitoring: 프로덕션에서 30% 샘플링
- // https://docs.sentry.io/platforms/javascript/configuration/options/#traces-sample-rate
- tracesSampleRate: 0.3,
-
- // Session Replay 샘플링 설정
- // Capture Replay for 10% of all sessions, plus 100% of sessions with an error
- // https://docs.sentry.io/platforms/javascript/session-replay/configuration/#general-integration-configuration
- replaysSessionSampleRate: 0.1, // 일반 세션의 10%
- replaysOnErrorSampleRate: 1.0, // 에러 발생 시 100%
-
- // tracePropagationTargets는 최상위 옵션으로 설정
- tracePropagationTargets: ["solid-connection.com", /^https:\/\/(www\.)?solid[-]?connection\.com/],
-
- integrations: [
- // Browser Tracing: 페이지 로드 및 네비게이션 성능 측정
- Sentry.browserTracingIntegration({
- // Web Vitals 자동 수집 활성화
- enableInp: true, // Interaction to Next Paint (INP) 측정
- }),
- ],
- });
-
- // Session Replay: 초기 번들에서 제외하고 lazy load (~30-40kB 절감)
- // https://docs.sentry.io/platforms/javascript/session-replay/#lazy-loading-replay
- Sentry.lazyLoadIntegration("replayIntegration").then((replay) => {
- Sentry.addIntegration(
- replay({
- maskAllText: true,
- blockAllMedia: true,
- }),
- );
- });
-}
diff --git a/apps/web/src/app/(home)/_ui/PopularUniversitySection/index.tsx b/apps/web/src/app/(home)/_ui/PopularUniversitySection/index.tsx
index 29304d00..a8db309d 100644
--- a/apps/web/src/app/(home)/_ui/PopularUniversitySection/index.tsx
+++ b/apps/web/src/app/(home)/_ui/PopularUniversitySection/index.tsx
@@ -1,18 +1,7 @@
-import dynamic from "next/dynamic";
import { Suspense } from "react";
import type { ListUniversity } from "@/types/university";
import PopularUniversityCard from "./_ui/PopularUniversityCard";
-// PopularUniversityCard를 동적 임포트
-const PopularUniversityCardDynamic = dynamic(() => import("./_ui/PopularUniversityCard"), {
- ssr: false,
- loading: () => (
-
- ),
-});
-
type PopularUniversitySectionProps = {
universities: ListUniversity[];
};
@@ -46,7 +35,7 @@ const PopularUniversitySection = ({ universities }: PopularUniversitySectionProp
}
>
- import("./_ui/NewsSection"), {
- ssr: false,
- loading: () => ,
-});
-
const baseUrl = process.env.NEXT_PUBLIC_WEB_URL || "https://solid-connection.com";
const ogImageUrl = `${baseUrl}/opengraph-image.png`;
const homeMetaTitle = "교환학생 사이트 | 솔리드 커넥션 – 교환학생 커뮤니티, 플랫폼";
@@ -106,7 +100,7 @@ const HomePage = async () => {
-
+
>
);
diff --git a/apps/web/src/app/api/revalidate/route.ts b/apps/web/src/app/api/revalidate/route.ts
index 11a1568d..7cdb7bc8 100644
--- a/apps/web/src/app/api/revalidate/route.ts
+++ b/apps/web/src/app/api/revalidate/route.ts
@@ -57,7 +57,7 @@ async function POST(request: NextRequest) {
// boardCode가 있으면 해당 커뮤니티 페이지 revalidate
if (boardCode) {
revalidatePath(`/community/${boardCode}`);
- revalidateTag(`posts-${boardCode}`);
+ revalidateTag(`posts-${boardCode}`, { expire: 0 });
return NextResponse.json({
revalidated: true,
@@ -78,7 +78,7 @@ async function POST(request: NextRequest) {
// 특정 태그 revalidate
if (tag) {
- revalidateTag(tag);
+ revalidateTag(tag, { expire: 0 });
return NextResponse.json({
revalidated: true,
message: `Tag ${tag} revalidated`,
diff --git a/apps/web/src/app/community/[boardCode]/[postId]/modify/page.tsx b/apps/web/src/app/community/[boardCode]/[postId]/modify/page.tsx
index 83ebf24f..ca1b315f 100644
--- a/apps/web/src/app/community/[boardCode]/[postId]/modify/page.tsx
+++ b/apps/web/src/app/community/[boardCode]/[postId]/modify/page.tsx
@@ -5,18 +5,18 @@ import TopDetailNavigation from "@/components/layout/TopDetailNavigation";
import PostModifyContent from "./PostModifyContent";
interface PostModifyPageProps {
- params: {
+ params: Promise<{
boardCode: string;
postId: string;
- };
+ }>;
}
export const metadata: Metadata = {
title: "글 수정",
};
-const PostModifyPage = ({ params }: PostModifyPageProps) => {
- const { boardCode, postId } = params;
+const PostModifyPage = async ({ params }: PostModifyPageProps) => {
+ const { boardCode, postId } = await params;
return (
<>
diff --git a/apps/web/src/app/community/[boardCode]/[postId]/page.tsx b/apps/web/src/app/community/[boardCode]/[postId]/page.tsx
index 2780d50b..cd382117 100644
--- a/apps/web/src/app/community/[boardCode]/[postId]/page.tsx
+++ b/apps/web/src/app/community/[boardCode]/[postId]/page.tsx
@@ -3,19 +3,19 @@ import type { Metadata } from "next";
import PostPageContent from "./PostPageContent";
interface PostPageProps {
- params: {
+ params: Promise<{
boardCode: string;
postId: string;
- };
+ }>;
}
export const metadata: Metadata = {
title: "게시글",
};
-const PostPage = ({ params }: PostPageProps) => {
- const { boardCode } = params;
- const postId = Number(params.postId);
+const PostPage = async ({ params }: PostPageProps) => {
+ const { boardCode, postId: postIdParam } = await params;
+ const postId = Number(postIdParam);
return (
diff --git a/apps/web/src/app/community/[boardCode]/create/page.tsx b/apps/web/src/app/community/[boardCode]/create/page.tsx
index 0f5aca6f..a95ec635 100644
--- a/apps/web/src/app/community/[boardCode]/create/page.tsx
+++ b/apps/web/src/app/community/[boardCode]/create/page.tsx
@@ -4,8 +4,8 @@ export const metadata = {
title: "글쓰기",
};
-const PostCreatePage = ({ params }: { params: { boardCode: string } }) => {
- const { boardCode } = params;
+const PostCreatePage = async ({ params }: { params: Promise<{ boardCode: string }> }) => {
+ const { boardCode } = await params;
return (
diff --git a/apps/web/src/app/community/[boardCode]/page.tsx b/apps/web/src/app/community/[boardCode]/page.tsx
index 1b60046f..a61b97dc 100644
--- a/apps/web/src/app/community/[boardCode]/page.tsx
+++ b/apps/web/src/app/community/[boardCode]/page.tsx
@@ -7,13 +7,13 @@ export const metadata: Metadata = {
};
interface CommunityPageProps {
- params: {
+ params: Promise<{
boardCode: string;
- };
+ }>;
}
-const CommunityPage = ({ params }: CommunityPageProps) => {
- const { boardCode } = params;
+const CommunityPage = async ({ params }: CommunityPageProps) => {
+ const { boardCode } = await params;
return (
diff --git a/apps/web/src/app/favicon.ico b/apps/web/src/app/favicon.ico
index 60a03576..ec7d51d1 100644
Binary files a/apps/web/src/app/favicon.ico and b/apps/web/src/app/favicon.ico differ
diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx
index f6d23c80..552a51e6 100644
--- a/apps/web/src/app/layout.tsx
+++ b/apps/web/src/app/layout.tsx
@@ -1,18 +1,20 @@
import type { Metadata, Viewport } from "next";
-import dynamic from "next/dynamic";
import localFont from "next/font/local";
import type { ReactNode } from "react";
import { Toaster } from "react-hot-toast";
import GlobalLayout from "@/components/layout/GlobalLayout";
import ReissueProvider from "@/components/layout/ReissueProvider";
-
import QueryProvider from "@/lib/react-query/QueryProvider";
+import AppleScriptLoader from "@/lib/ScriptLoader/AppleScriptLoader";
import "@/styles/globals.css";
import { GoogleAnalytics } from "@next/third-parties/google";
import { SpeedInsights } from "@vercel/speed-insights/next";
+const siteUrl = process.env.NEXT_PUBLIC_WEB_URL || "https://solid-connection.com";
+
export const metadata: Metadata = {
+ metadataBase: new URL(siteUrl),
title: "솔리드 커넥션",
description: "솔리드 커넥션. 교환학생의 첫 걸음",
verification: {
@@ -39,11 +41,6 @@ const pretendard = localFont({
],
});
-const AppleScriptLoader = dynamic(() => import("@/lib/ScriptLoader/AppleScriptLoader"), {
- ssr: false,
- loading: () => null,
-});
-
declare global {
interface Window {
Kakao: {
diff --git a/apps/web/src/app/login/page.tsx b/apps/web/src/app/login/page.tsx
index 787674f8..4346dbfd 100644
--- a/apps/web/src/app/login/page.tsx
+++ b/apps/web/src/app/login/page.tsx
@@ -1,11 +1,6 @@
import type { Metadata } from "next";
-import dynamic from "next/dynamic";
-
-const KakaoScriptLoader = dynamic(() => import("@/lib/ScriptLoader/KakaoScriptLoader"), {
- ssr: false,
- loading: () => null,
-});
-const LoginContent = dynamic(() => import("./LoginContent"), { ssr: false });
+import KakaoScriptLoader from "@/lib/ScriptLoader/KakaoScriptLoader";
+import LoginContent from "./LoginContent";
export const metadata: Metadata = {
title: "로그인",
diff --git a/apps/web/src/app/mentor/[id]/page.tsx b/apps/web/src/app/mentor/[id]/page.tsx
index ffda2381..0b34a435 100644
--- a/apps/web/src/app/mentor/[id]/page.tsx
+++ b/apps/web/src/app/mentor/[id]/page.tsx
@@ -9,11 +9,12 @@ export const metadata: Metadata = {
};
interface MentorDetailPageProps {
- params: { id: string };
+ params: Promise<{ id: string }>;
}
-const MentorDetailPage = ({ params }: MentorDetailPageProps) => {
- const mentorId = Number(params.id);
+const MentorDetailPage = async ({ params }: MentorDetailPageProps) => {
+ const { id } = await params;
+ const mentorId = Number(id);
return (
diff --git a/apps/web/src/app/mentor/chat/[chatId]/page.tsx b/apps/web/src/app/mentor/chat/[chatId]/page.tsx
index d1b833ad..f2596a4c 100644
--- a/apps/web/src/app/mentor/chat/[chatId]/page.tsx
+++ b/apps/web/src/app/mentor/chat/[chatId]/page.tsx
@@ -11,11 +11,12 @@ export const metadata: Metadata = {
};
interface ChatDetailPageProps {
- params: { chatId: string };
+ params: Promise<{ chatId: string }>;
}
-const ChatDetailPage = ({ params }: ChatDetailPageProps) => {
- const chatId = Number(params.chatId);
+const ChatDetailPage = async ({ params }: ChatDetailPageProps) => {
+ const { chatId: chatIdParam } = await params;
+ const chatId = Number(chatIdParam);
if (Number.isNaN(chatId)) notFound();
return (
diff --git a/apps/web/src/app/university/[homeUniversity]/page.tsx b/apps/web/src/app/university/[homeUniversity]/page.tsx
index 422c1be0..a8985d77 100644
--- a/apps/web/src/app/university/[homeUniversity]/page.tsx
+++ b/apps/web/src/app/university/[homeUniversity]/page.tsx
@@ -24,7 +24,7 @@ export async function generateStaticParams() {
type PageProps = {
params: Promise<{ homeUniversity: string }>;
- searchParams?: Record
;
+ searchParams?: Promise>;
};
type SearchParamValue = string | string[] | undefined;
@@ -80,10 +80,11 @@ export async function generateMetadata({ params }: PageProps): Promise
const UniversityListPage = async ({ params, searchParams }: PageProps) => {
const { homeUniversity } = await params;
- const initialSearchText = getFirstSearchParamValue(searchParams?.searchText).trim();
- const languageTestTypeParam = getFirstSearchParamValue(searchParams?.languageTestType).trim();
- const countryCodeParams = getSearchParamValues(searchParams?.countryCode).filter(isCountryCode);
- const regionParams = getSearchParamValues(searchParams?.region).filter(isRegionFilterValue);
+ const resolvedSearchParams = await searchParams;
+ const initialSearchText = getFirstSearchParamValue(resolvedSearchParams?.searchText).trim();
+ const languageTestTypeParam = getFirstSearchParamValue(resolvedSearchParams?.languageTestType).trim();
+ const countryCodeParams = getSearchParamValues(resolvedSearchParams?.countryCode).filter(isCountryCode);
+ const regionParams = getSearchParamValues(resolvedSearchParams?.region).filter(isRegionFilterValue);
const initialRegion = regionParams.length === 1 ? regionParams[0] : RegionEnumExtend.ALL;
const languageTestType = isLanguageTestType(languageTestTypeParam) ? languageTestTypeParam : undefined;
diff --git a/apps/web/src/app/university/application/apply/page.tsx b/apps/web/src/app/university/application/apply/page.tsx
index dbe02f79..83e31d3e 100644
--- a/apps/web/src/app/university/application/apply/page.tsx
+++ b/apps/web/src/app/university/application/apply/page.tsx
@@ -1,18 +1,13 @@
import type { Metadata } from "next";
-import dynamic from "next/dynamic";
+import ApplyPageContent from "./ApplyPageContent";
export const metadata: Metadata = {
title: "지원하기",
};
-const ApplyPageContentDynamic = dynamic(() => import("./ApplyPageContent"), {
- ssr: false,
- loading: () => null,
-});
-
const ApplyPage = () => {
return (
);
};
diff --git a/apps/web/src/app/university/score/page.tsx b/apps/web/src/app/university/score/page.tsx
index f8cd1778..013fd7be 100644
--- a/apps/web/src/app/university/score/page.tsx
+++ b/apps/web/src/app/university/score/page.tsx
@@ -1,9 +1,7 @@
import type { Metadata } from "next";
-import dynamic from "next/dynamic";
import TopDetailNavigation from "@/components/layout/TopDetailNavigation";
-
-const ScoreScreen = dynamic(() => import("./ScoreScreen"), { ssr: false });
+import ScoreScreen from "./ScoreScreen";
export const metadata: Metadata = {
title: "성적 확인하기",
diff --git a/apps/web/src/app/university/score/submit/gpa/_lib/schema.ts b/apps/web/src/app/university/score/submit/gpa/_lib/schema.ts
index 2eedcd20..3f48c510 100644
--- a/apps/web/src/app/university/score/submit/gpa/_lib/schema.ts
+++ b/apps/web/src/app/university/score/submit/gpa/_lib/schema.ts
@@ -3,6 +3,7 @@ import { z } from "zod";
// 1. Zod 스키마 정의: GPA 폼 데이터의 유효성 규칙
const MAX_FILE_SIZE = 5 * 1024 * 1024; // 5MB
const ACCEPTED_FILE_TYPES = ["image/jpeg", "image/png", "application/pdf", "image/webp"];
+const isFileList = (value: unknown): value is FileList => typeof FileList !== "undefined" && value instanceof FileList;
export const gpaSchema = z
.object({
@@ -11,7 +12,7 @@ export const gpaSchema = z
}),
gpa: z.string().min(1, "점수를 입력해주세요."),
file: z
- .instanceof(FileList)
+ .custom(isFileList, "증명서 파일을 첨부해주세요.")
.refine((files) => files?.length === 1, "증명서 파일을 첨부해주세요.")
.refine((files) => files?.[0]?.size <= MAX_FILE_SIZE, `파일 크기는 5MB를 초과할 수 없습니다.`)
.refine((files) => ACCEPTED_FILE_TYPES.includes(files?.[0]?.type), ".jpeg, .png, .webp, .pdf 파일만 지원합니다."),
diff --git a/apps/web/src/app/university/score/submit/gpa/page.tsx b/apps/web/src/app/university/score/submit/gpa/page.tsx
index 1007e08e..0290eb48 100644
--- a/apps/web/src/app/university/score/submit/gpa/page.tsx
+++ b/apps/web/src/app/university/score/submit/gpa/page.tsx
@@ -1,9 +1,7 @@
import type { Metadata } from "next";
-import dynamic from "next/dynamic";
import TopDetailNavigation from "@/components/layout/TopDetailNavigation";
-
-const ClientGpaForm = dynamic(() => import("./GpaSubmitForm"), { ssr: false });
+import GpaSubmitForm from "./GpaSubmitForm";
export const metadata: Metadata = {
title: "성적 입력하기",
@@ -14,7 +12,7 @@ const SubmitGpaPage = () => {
<>
-
+
>
);
diff --git a/apps/web/src/app/university/score/submit/language-test/_lib/schema.ts b/apps/web/src/app/university/score/submit/language-test/_lib/schema.ts
index 44093db1..e8f4d833 100644
--- a/apps/web/src/app/university/score/submit/language-test/_lib/schema.ts
+++ b/apps/web/src/app/university/score/submit/language-test/_lib/schema.ts
@@ -5,6 +5,7 @@ import validateLanguageScore from "@/utils/scoreUtils";
// 1. Zod 스키마 정의: 폼 데이터의 유효성 규칙
const MAX_FILE_SIZE = 5 * 1024 * 1024; // 5MB
const ACCEPTED_FILE_TYPES = ["image/jpeg", "image/png", "image/webp", "application/pdf"];
+const isFileList = (value: unknown): value is FileList => typeof FileList !== "undefined" && value instanceof FileList;
export const languageTestSchema = z
.object({
@@ -13,7 +14,7 @@ export const languageTestSchema = z
}),
score: z.string().min(1, "점수를 입력해주세요."),
file: z
- .instanceof(FileList)
+ .custom(isFileList, "증명서 파일을 첨부해주세요.")
.refine((files) => files?.length === 1, "증명서 파일을 첨부해주세요.")
.refine((files) => files?.[0]?.size <= MAX_FILE_SIZE, `파일 크기는 5MB를 초과할 수 없습니다.`)
.refine((files) => ACCEPTED_FILE_TYPES.includes(files?.[0]?.type), ".jpeg, .png, .pdf 파일만 지원합니다."),
diff --git a/apps/web/src/app/university/score/submit/language-test/page.tsx b/apps/web/src/app/university/score/submit/language-test/page.tsx
index 2ffb8cde..9325c986 100644
--- a/apps/web/src/app/university/score/submit/language-test/page.tsx
+++ b/apps/web/src/app/university/score/submit/language-test/page.tsx
@@ -1,9 +1,7 @@
import type { Metadata } from "next";
-import dynamic from "next/dynamic";
import TopDetailNavigation from "@/components/layout/TopDetailNavigation";
-
-const LanguageTestSubmitForm = dynamic(() => import("./LanguageTestSubmitForm"), { ssr: false });
+import LanguageTestSubmitForm from "./LanguageTestSubmitForm";
export const metadata: Metadata = {
title: "성적 입력하기",
diff --git a/apps/web/src/app/university/search/page.tsx b/apps/web/src/app/university/search/page.tsx
index a019c2cd..ad28e4eb 100644
--- a/apps/web/src/app/university/search/page.tsx
+++ b/apps/web/src/app/university/search/page.tsx
@@ -1,9 +1,7 @@
import type { Metadata } from "next";
-import dynamic from "next/dynamic";
import TopDetailNavigation from "@/components/layout/TopDetailNavigation";
-
-const SearchClientContent = dynamic(() => import("./SearchClientContent"), { ssr: false });
+import SearchClientContent from "./SearchClientContent";
export const metadata: Metadata = {
title: "파견 학교 목록",
diff --git a/apps/web/src/components/layout/GlobalLayout/index.tsx b/apps/web/src/components/layout/GlobalLayout/index.tsx
index 4db968f5..aee5bc8a 100644
--- a/apps/web/src/components/layout/GlobalLayout/index.tsx
+++ b/apps/web/src/components/layout/GlobalLayout/index.tsx
@@ -1,13 +1,12 @@
-import dynamic from "next/dynamic";
import type { ReactNode } from "react";
+import AIInspectorFab from "./ui/AIInspectorFab/index";
import BottomNavigation from "./ui/BottomNavigation";
+import ClientModal from "./ui/ClientModal";
// import ServerModal from "./ui/ServerModal";
// const BottomNavigationDynamic = dynamic(() => import("./ui/BottomNavigation"), { ssr: false, loading: () => null });
-const AIInspectorFab = dynamic(() => import("./ui/AIInspectorFab/index"), { ssr: false, loading: () => null });
-const ClientModal = dynamic(() => import("./ui/ClientModal"), { ssr: false, loading: () => null });
type LayoutProps = {
children: ReactNode;
diff --git a/apps/web/src/instrumentation-client.ts b/apps/web/src/instrumentation-client.ts
new file mode 100644
index 00000000..7d8c412b
--- /dev/null
+++ b/apps/web/src/instrumentation-client.ts
@@ -0,0 +1,33 @@
+import * as Sentry from "@sentry/nextjs";
+
+export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;
+
+if (process.env.NODE_ENV === "production") {
+ Sentry.init({
+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN || process.env.SENTRY_DSN || "",
+ environment: process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT || process.env.SENTRY_ENVIRONMENT || "production",
+
+ sendDefaultPii: true,
+ tracesSampleRate: 0.3,
+
+ replaysSessionSampleRate: 0.1,
+ replaysOnErrorSampleRate: 1.0,
+
+ tracePropagationTargets: ["solid-connection.com", /^https:\/\/(www\.)?solid[-]?connection\.com/],
+
+ integrations: [
+ Sentry.browserTracingIntegration({
+ enableInp: true,
+ }),
+ ],
+ });
+
+ Sentry.lazyLoadIntegration("replayIntegration").then((replay) => {
+ Sentry.addIntegration(
+ replay({
+ maskAllText: true,
+ blockAllMedia: true,
+ }),
+ );
+ });
+}
diff --git a/apps/web/src/instrumentation.ts b/apps/web/src/instrumentation.ts
new file mode 100644
index 00000000..ecb65282
--- /dev/null
+++ b/apps/web/src/instrumentation.ts
@@ -0,0 +1,13 @@
+import * as Sentry from "@sentry/nextjs";
+
+export async function register() {
+ if (process.env.NEXT_RUNTIME === "nodejs") {
+ await import("../sentry.server.config");
+ }
+
+ if (process.env.NEXT_RUNTIME === "edge") {
+ await import("../sentry.edge.config");
+ }
+}
+
+export const onRequestError = Sentry.captureRequestError;
diff --git a/apps/web/src/middleware.ts b/apps/web/src/proxy.ts
similarity index 96%
rename from apps/web/src/middleware.ts
rename to apps/web/src/proxy.ts
index d63c548c..ba38ed22 100644
--- a/apps/web/src/middleware.ts
+++ b/apps/web/src/proxy.ts
@@ -25,7 +25,7 @@ const isProbePath = (pathname: string) => {
return blockedPathPrefixes.some((prefix) => pathname.startsWith(prefix));
};
-export function middleware(request: NextRequest) {
+export function proxy(request: NextRequest) {
const pathname = request.nextUrl.pathname;
if (pathname === "/robots.txt" && isStageHostname(request.nextUrl.hostname)) {
diff --git a/apps/web/src/utils/isServerStateLogin.ts b/apps/web/src/utils/isServerStateLogin.ts
index 3e73a120..ea287ced 100644
--- a/apps/web/src/utils/isServerStateLogin.ts
+++ b/apps/web/src/utils/isServerStateLogin.ts
@@ -2,8 +2,8 @@ import { cookies } from "next/headers";
import { isTokenExpired } from "./jwtUtils";
-const isServerStateLogin = (): boolean => {
- const cookieStore = cookies();
+const isServerStateLogin = async (): Promise => {
+ const cookieStore = await cookies();
const refreshToken = cookieStore.get("refreshToken")?.value;
const isLogin = !!(refreshToken && !isTokenExpired(refreshToken));
return isLogin;
diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json
index 6631e2db..34e7b439 100644
--- a/apps/web/tsconfig.json
+++ b/apps/web/tsconfig.json
@@ -8,10 +8,10 @@
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
- "moduleResolution": "node",
+ "moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
- "jsx": "preserve",
+ "jsx": "react-jsx",
"types": ["react", "react-dom"],
"typeRoots": ["./node_modules/@types"],
"paths": {
@@ -23,8 +23,17 @@
"name": "next"
}
],
- "strictNullChecks": true
+ "strictNullChecks": true,
+ "target": "ES2017"
},
- "include": ["next-env.d.ts", "svg.d.ts", "images.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "include": [
+ "next-env.d.ts",
+ "svg.d.ts",
+ "images.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ ".next/dev/types/**/*.ts"
+ ],
"exclude": ["node_modules"]
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e28b482f..6d907335 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -125,7 +125,7 @@ importers:
version: 5.9.3
vinext:
specifier: ^0.0.51
- version: 0.0.51(@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(@vitejs/plugin-rsc@0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ version: 0.0.51(@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(@vitejs/plugin-rsc@0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(next@16.2.6(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
vite:
specifier: ^8.0.14
version: 8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
@@ -140,28 +140,28 @@ importers:
dependencies:
'@hookform/resolvers':
specifier: ^5.2.2
- version: 5.2.2(react-hook-form@7.71.1(react@18.3.1))
+ version: 5.2.2(react-hook-form@7.71.1(react@19.2.6))
'@next/third-parties':
- specifier: ^14.2.4
- version: 14.2.35(next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ specifier: ^16.2.6
+ version: 16.2.6(next@16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)
'@radix-ui/react-checkbox':
specifier: ^1.1.4
- version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@radix-ui/react-label':
specifier: ^2.1.2
- version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@radix-ui/react-progress':
specifier: ^1.1.2
- version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@radix-ui/react-select':
specifier: ^2.1.6
- version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@react-google-maps/api':
specifier: ^2.19.2
- version: 2.20.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.20.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@sentry/nextjs':
specifier: ^10.22.0
- version: 10.34.0(@opentelemetry/context-async-hooks@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.4.0(@opentelemetry/api@1.9.0))(next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.104.1)
+ version: 10.34.0(@opentelemetry/context-async-hooks@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.4.0(@opentelemetry/api@1.9.0))(next@16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)(webpack@5.104.1)
'@solid-connect/ai-inspector':
specifier: workspace:^
version: link:../../packages/ai-inspector
@@ -170,16 +170,16 @@ importers:
version: 7.2.1
'@tanstack/react-query':
specifier: ^5.84.1
- version: 5.90.19(react@18.3.1)
+ version: 5.90.19(react@19.2.6)
'@tanstack/react-query-devtools':
specifier: ^5.84.1
- version: 5.91.2(@tanstack/react-query@5.90.19(react@18.3.1))(react@18.3.1)
+ version: 5.91.2(@tanstack/react-query@5.90.19(react@19.2.6))(react@19.2.6)
'@tanstack/react-virtual':
specifier: ^3.13.12
- version: 3.13.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.13.18(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@vercel/speed-insights':
specifier: ^1.3.1
- version: 1.3.1(next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 1.3.1(next@16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)
axios:
specifier: ^1.6.7
version: 1.13.2
@@ -194,31 +194,31 @@ importers:
version: 13.7.0
linkify-react:
specifier: ^4.3.2
- version: 4.3.2(linkifyjs@4.3.2)(react@18.3.1)
+ version: 4.3.2(linkifyjs@4.3.2)(react@19.2.6)
linkifyjs:
specifier: ^4.3.2
version: 4.3.2
lucide-react:
specifier: ^0.479.0
- version: 0.479.0(react@18.3.1)
+ version: 0.479.0(react@19.2.6)
next:
- specifier: ^14.2.35
- version: 14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^16.2.6
+ version: 16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
next-render-analyzer:
specifier: ^0.1.2
version: 0.1.2
react:
- specifier: ^18
- version: 18.3.1
+ specifier: ^19.2.6
+ version: 19.2.6
react-dom:
- specifier: ^18
- version: 18.3.1(react@18.3.1)
+ specifier: ^19.2.6
+ version: 19.2.6(react@19.2.6)
react-hook-form:
specifier: ^7.60.0
- version: 7.71.1(react@18.3.1)
+ version: 7.71.1(react@19.2.6)
react-hot-toast:
specifier: ^2.6.0
- version: 2.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.6.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
sockjs-client:
specifier: ^1.6.1
version: 1.6.1
@@ -233,11 +233,11 @@ importers:
version: 4.3.5
zustand:
specifier: ^5.0.7
- version: 5.0.10(@types/react@19.2.10)(react@18.3.1)(use-sync-external-store@1.6.0(react@18.3.1))
+ version: 5.0.10(@types/react@19.2.15)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6))
devDependencies:
'@next/bundle-analyzer':
- specifier: ^16.1.6
- version: 16.1.6
+ specifier: ^16.2.6
+ version: 16.2.6
'@svgr/webpack':
specifier: ^8.1.0
version: 8.1.0(typescript@5.9.3)
@@ -245,11 +245,11 @@ importers:
specifier: ^20.11.19
version: 20.19.30
'@types/react':
- specifier: 19.2.10
- version: 19.2.10
+ specifier: 19.2.15
+ version: 19.2.15
'@types/react-dom':
specifier: 19.2.3
- version: 19.2.3(@types/react@19.2.10)
+ version: 19.2.3(@types/react@19.2.15)
autoprefixer:
specifier: ^10.4.20
version: 10.4.23(postcss@8.5.6)
@@ -1357,6 +1357,143 @@ packages:
peerDependencies:
react-hook-form: ^7.55.0
+ '@img/colour@1.1.0':
+ resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
+ engines: {node: '>=18'}
+
+ '@img/sharp-darwin-arm64@0.34.5':
+ resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.34.5':
+ resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
+ resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.2.4':
+ resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-linux-arm64@1.2.4':
+ resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.2.4':
+ resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
+ resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
+ resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.2.4':
+ resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.2.4':
+ resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
+ resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.2.4':
+ resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.34.5':
+ resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.34.5':
+ resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-ppc64@0.34.5':
+ resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@img/sharp-linux-riscv64@0.34.5':
+ resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.34.5':
+ resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.34.5':
+ resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.34.5':
+ resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.34.5':
+ resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.34.5':
+ resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-arm64@0.34.5':
+ resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@img/sharp-win32-ia32@0.34.5':
+ resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.34.5':
+ resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
@@ -1389,71 +1526,65 @@ packages:
'@emnapi/core': ^1.7.1
'@emnapi/runtime': ^1.7.1
- '@next/bundle-analyzer@16.1.6':
- resolution: {integrity: sha512-ee2kagdTaeEWPlotgdTOqFHYcD3e2m2bbE3I9Rq2i6ABYi5OgopmtEUe8NM23viaYxLV2tDH/2nd5+qKoEr6cw==}
+ '@next/bundle-analyzer@16.2.6':
+ resolution: {integrity: sha512-amPkVtHCTJAdBwyhhl5+qztHk24O4JlASgrWqh15AmnYi74apfZR46NGC0u4pM6BMAU1mYld4WdzD3cRBP3dOA==}
- '@next/env@14.2.35':
- resolution: {integrity: sha512-DuhvCtj4t9Gwrx80dmz2F4t/zKQ4ktN8WrMwOuVzkJfBilwAwGr6v16M5eI8yCuZ63H9TTuEU09Iu2HqkzFPVQ==}
+ '@next/env@16.2.6':
+ resolution: {integrity: sha512-gd8HoHN4ufj73WmR3JmVolrpJR47ILK6LouP5xElPglaVxir6e1a7VzvTvDWkOoPXT9rkkTzyCxBu4yeZfZwcw==}
- '@next/swc-darwin-arm64@14.2.33':
- resolution: {integrity: sha512-HqYnb6pxlsshoSTubdXKu15g3iivcbsMXg4bYpjL2iS/V6aQot+iyF4BUc2qA/J/n55YtvE4PHMKWBKGCF/+wA==}
+ '@next/swc-darwin-arm64@16.2.6':
+ resolution: {integrity: sha512-ZJGkkcNfYgrrMkqOdZ7zoLa1TOy0qpcMfk/z4Mh/FKUz40gVO+HNQWqmLxf67Z5WB64DRp0dhEbyHfel+6sJUg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.33':
- resolution: {integrity: sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==}
+ '@next/swc-darwin-x64@16.2.6':
+ resolution: {integrity: sha512-v/YLBHIY132Ced3puBJ7YJKw1lqsCrgcNo2aRJlCEyQrrCeRJlvGlnmxhPxNQI3KE3N1DN5r9TPNPvka3nq5RQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@14.2.33':
- resolution: {integrity: sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==}
+ '@next/swc-linux-arm64-gnu@16.2.6':
+ resolution: {integrity: sha512-RPOvqlYBbcQjkz9VQQDZ2T2bARIjXZV1KFlt+V2Mr6SW/e4I9fcKsaA0hdyf2FHoTlsV2xnBd5Y912rP/1Ce6w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.33':
- resolution: {integrity: sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==}
+ '@next/swc-linux-arm64-musl@16.2.6':
+ resolution: {integrity: sha512-URUTu1+dMkxJsPFgm+OeEvq9wf5sujw0EvgYy80TDGHTSLTnIHeqb0Eu8A3sC95IRgjejQL+kC4mw+4yPxiAXA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.33':
- resolution: {integrity: sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==}
+ '@next/swc-linux-x64-gnu@16.2.6':
+ resolution: {integrity: sha512-DOj182mPV8G3UkrayLoREM5YEYI+Dk5wv7Ox9xl1fFibAELEsFD0lDPfHIeILlutMMfdyhlzYPELG3peuKaurw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.33':
- resolution: {integrity: sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==}
+ '@next/swc-linux-x64-musl@16.2.6':
+ resolution: {integrity: sha512-HKQ5SP/V/ub73UvF7n/zeJlxk2kLmtL7Wzrg4WfmkjmNos5onJ2tKu7yZOPdL18A6Svfn3max29ym+ry7NkK4g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-win32-arm64-msvc@14.2.33':
- resolution: {integrity: sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==}
+ '@next/swc-win32-arm64-msvc@16.2.6':
+ resolution: {integrity: sha512-LZXpTlPyS5v7HhSmnvsLGP3iIYgYOBnc8r8ArlT55sGHV89bR2HlDdBjWQ+PY6SJMmk8TuVGFuxalnP3k/0Dwg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.33':
- resolution: {integrity: sha512-pc9LpGNKhJ0dXQhZ5QMmYxtARwwmWLpeocFmVG5Z0DzWq5Uf0izcI8tLc+qOpqxO1PWqZ5A7J1blrUIKrIFc7Q==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
-
- '@next/swc-win32-x64-msvc@14.2.33':
- resolution: {integrity: sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==}
+ '@next/swc-win32-x64-msvc@16.2.6':
+ resolution: {integrity: sha512-F0+4i0h9J6C4eE3EAPWsoCk7UW/dbzOjyzxY0qnDUOYFu6FFmdZ6l97/XdV3/Nz3VYyO7UWjyEJUXkGqcoXfMA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@next/third-parties@14.2.35':
- resolution: {integrity: sha512-dG1J+4uYungW1snGViN7tAVyfO0iz0zoB+sqsLMUo8kwR0NED2muLTMbOChmrliHhzOFj6ZpHfkvhy5NJjFvSQ==}
+ '@next/third-parties@16.2.6':
+ resolution: {integrity: sha512-PDPIPVj1NX6Taxsl8OJteAUJ7iwR+QrokwWig68eh0cOmuNjC6MBL+ZzBjO8Bv0n/HOSqjGArZpM5KMSUxm+MQ==}
peerDependencies:
- next: ^13.0.0 || ^14.0.0
- react: ^18.2.0
+ next: ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0-beta.0
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -2538,11 +2669,8 @@ packages:
resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==}
engines: {node: '>=14'}
- '@swc/counter@0.1.3':
- resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
-
- '@swc/helpers@0.5.5':
- resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
+ '@swc/helpers@0.5.15':
+ resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
'@tailwindcss/node@4.1.18':
resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
@@ -2755,6 +2883,9 @@ packages:
'@types/react@19.2.10':
resolution: {integrity: sha512-WPigyYuGhgZ/cTPRXB2EwUw+XvsRA3GqHlsP4qteqrnnjDrApbS7MxcGr/hke5iUoeB7E/gQtrs9I37zAJ0Vjw==}
+ '@types/react@19.2.15':
+ resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==}
+
'@types/request@2.48.13':
resolution: {integrity: sha512-FGJ6udDNUCjd19pp0Q3iTiDkwhYup7J8hpMW9c4k53NrccQFFWKRho6hvtPPEhnXWKvukfwAlB6DbDz4yhH5Gg==}
@@ -3059,6 +3190,11 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ baseline-browser-mapping@2.10.32:
+ resolution: {integrity: sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
baseline-browser-mapping@2.9.15:
resolution: {integrity: sha512-kX8h7K2srmDyYnXRIppo4AH/wYgzWVCs+eKr3RusRSQ5PvRYoEFmR/I0PbdTjKFAoKqp5+kbxnNTFO9jOfSVJg==}
hasBin: true
@@ -3094,10 +3230,6 @@ packages:
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- busboy@1.6.0:
- resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
- engines: {node: '>=10.16.0'}
-
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
@@ -4382,21 +4514,24 @@ packages:
engines: {node: '>=16.0.0'}
hasBin: true
- next@14.2.35:
- resolution: {integrity: sha512-KhYd2Hjt/O1/1aZVX3dCwGXM1QmOV4eNM2UTacK5gipDdPN/oHHK/4oVGy7X8GMfPMsUTUEmGlsy0EY1YGAkig==}
- engines: {node: '>=18.17.0'}
+ next@16.2.6:
+ resolution: {integrity: sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==}
+ engines: {node: '>=20.9.0'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
- '@playwright/test': ^1.41.2
- react: ^18.2.0
- react-dom: ^18.2.0
+ '@playwright/test': ^1.51.1
+ babel-plugin-react-compiler: '*'
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
optional: true
'@playwright/test':
optional: true
+ babel-plugin-react-compiler:
+ optional: true
sass:
optional: true
@@ -4703,11 +4838,6 @@ packages:
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- react-dom@18.3.1:
- resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
- peerDependencies:
- react: ^18.3.1
-
react-dom@19.2.6:
resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==}
peerDependencies:
@@ -4767,10 +4897,6 @@ packages:
'@types/react':
optional: true
- react@18.3.1:
- resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
- engines: {node: '>=0.10.0'}
-
react@19.2.4:
resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
engines: {node: '>=0.10.0'}
@@ -4878,9 +5004,6 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- scheduler@0.23.2:
- resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
-
scheduler@0.27.0:
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
@@ -4900,6 +5023,10 @@ packages:
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ sharp@0.34.5:
+ resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -4968,10 +5095,6 @@ packages:
stream-shift@1.0.3:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
- streamsearch@1.1.0:
- resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
- engines: {node: '>=10.0.0'}
-
string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -5003,13 +5126,13 @@ packages:
stubs@3.0.0:
resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==}
- styled-jsx@5.1.1:
- resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
+ styled-jsx@5.1.6:
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -6849,11 +6972,11 @@ snapshots:
'@floating-ui/core': 1.7.3
'@floating-ui/utils': 0.2.10
- '@floating-ui/react-dom@2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom@2.1.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@floating-ui/dom': 1.7.4
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
'@floating-ui/utils@0.2.10': {}
@@ -6932,10 +7055,107 @@ snapshots:
yargs: 17.7.2
optional: true
- '@hookform/resolvers@5.2.2(react-hook-form@7.71.1(react@18.3.1))':
+ '@hookform/resolvers@5.2.2(react-hook-form@7.71.1(react@19.2.6))':
dependencies:
'@standard-schema/utils': 0.3.0
- react-hook-form: 7.71.1(react@18.3.1)
+ react-hook-form: 7.71.1(react@19.2.6)
+
+ '@img/colour@1.1.0':
+ optional: true
+
+ '@img/sharp-darwin-arm64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
+ optional: true
+
+ '@img/sharp-darwin-x64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.2.4
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.2.4':
+ optional: true
+
+ '@img/sharp-linux-arm64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.2.4
+ optional: true
+
+ '@img/sharp-linux-arm@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.2.4
+ optional: true
+
+ '@img/sharp-linux-ppc64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
+ optional: true
+
+ '@img/sharp-linux-riscv64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
+ optional: true
+
+ '@img/sharp-linux-s390x@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.2.4
+ optional: true
+
+ '@img/sharp-linux-x64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.2.4
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.34.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
+ optional: true
+
+ '@img/sharp-wasm32@0.34.5':
+ dependencies:
+ '@emnapi/runtime': 1.10.0
+ optional: true
+
+ '@img/sharp-win32-arm64@0.34.5':
+ optional: true
+
+ '@img/sharp-win32-ia32@0.34.5':
+ optional: true
+
+ '@img/sharp-win32-x64@0.34.5':
+ optional: true
'@isaacs/cliui@8.0.2':
dependencies:
@@ -6980,46 +7200,43 @@ snapshots:
'@tybys/wasm-util': 0.10.1
optional: true
- '@next/bundle-analyzer@16.1.6':
+ '@next/bundle-analyzer@16.2.6':
dependencies:
webpack-bundle-analyzer: 4.10.1
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@next/env@14.2.35': {}
-
- '@next/swc-darwin-arm64@14.2.33':
- optional: true
+ '@next/env@16.2.6': {}
- '@next/swc-darwin-x64@14.2.33':
+ '@next/swc-darwin-arm64@16.2.6':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.33':
+ '@next/swc-darwin-x64@16.2.6':
optional: true
- '@next/swc-linux-arm64-musl@14.2.33':
+ '@next/swc-linux-arm64-gnu@16.2.6':
optional: true
- '@next/swc-linux-x64-gnu@14.2.33':
+ '@next/swc-linux-arm64-musl@16.2.6':
optional: true
- '@next/swc-linux-x64-musl@14.2.33':
+ '@next/swc-linux-x64-gnu@16.2.6':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.33':
+ '@next/swc-linux-x64-musl@16.2.6':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.33':
+ '@next/swc-win32-arm64-msvc@16.2.6':
optional: true
- '@next/swc-win32-x64-msvc@14.2.33':
+ '@next/swc-win32-x64-msvc@16.2.6':
optional: true
- '@next/third-parties@14.2.35(next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@next/third-parties@16.2.6(next@16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)':
dependencies:
- next: 14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ next: 16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
third-party-capital: 1.0.20
'@nodelib/fs.scandir@2.1.5':
@@ -7321,42 +7538,30 @@ snapshots:
'@radix-ui/primitive@1.1.3': {}
- '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
- '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
-
- '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
@@ -7370,11 +7575,17 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7382,11 +7593,11 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-context@1.1.2(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- react: 18.3.1
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
'@radix-ui/react-context@1.1.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7394,17 +7605,17 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-context@1.1.3(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.2(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- react: 18.3.1
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- '@radix-ui/react-direction@1.1.1(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.3(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- react: 18.3.1
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
'@radix-ui/react-direction@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7412,42 +7623,41 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
- '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
- '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
- '@radix-ui/react-id@1.1.1(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-id@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7456,14 +7666,12 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
'@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
@@ -7474,43 +7682,42 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@floating-ui/react-dom': 2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/rect': 1.1.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
-
- '@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
+
+ '@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/rect': 1.1.1
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ optionalDependencies:
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
- '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
@@ -7522,14 +7729,15 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
@@ -7540,14 +7748,14 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-slot': 1.2.4(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
@@ -7558,15 +7766,24 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ dependencies:
+ '@radix-ui/react-slot': 1.2.4(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ optionalDependencies:
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
+
+ '@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-context': 1.1.3(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-context': 1.1.3(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
@@ -7585,41 +7802,34 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@radix-ui/number': 1.1.1
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
aria-hidden: 1.2.6
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.7.2(@types/react@19.2.10)(react@18.3.1)
- optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
-
- '@radix-ui/react-slot@1.2.3(@types/react@19.2.10)(react@18.3.1)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ react-remove-scroll: 2.7.2(@types/react@19.2.15)(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/react-slot@1.2.3(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7628,12 +7838,12 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-slot@1.2.4(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-slot@1.2.3(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
'@radix-ui/react-slot@1.2.4(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7642,6 +7852,13 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
+ '@radix-ui/react-slot@1.2.4(@types/react@19.2.15)(react@19.2.6)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
+ optionalDependencies:
+ '@types/react': 19.2.15
+
'@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@radix-ui/primitive': 1.1.3
@@ -7658,25 +7875,17 @@ snapshots:
'@types/react': 19.2.10
'@types/react-dom': 19.2.3(@types/react@19.2.10)
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.10)(react@18.3.1)':
- dependencies:
- react: 18.3.1
- optionalDependencies:
- '@types/react': 19.2.10
-
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
react: 19.2.6
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.10)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7686,12 +7895,13 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.15)(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7700,18 +7910,19 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- react: 18.3.1
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.10)(react@19.2.6)':
dependencies:
@@ -7719,38 +7930,44 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.10
- '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- react: 18.3.1
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ dependencies:
+ react: 19.2.6
+ optionalDependencies:
+ '@types/react': 19.2.15
+
+ '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.15)(react@19.2.6)':
dependencies:
'@radix-ui/rect': 1.1.1
- react: 18.3.1
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- '@radix-ui/react-use-size@1.1.1(@types/react@19.2.10)(react@18.3.1)':
+ '@radix-ui/react-use-size@1.1.1(@types/react@19.2.15)(react@19.2.6)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.6
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
- '@types/react-dom': 19.2.3(@types/react@19.2.10)
+ '@types/react': 19.2.15
+ '@types/react-dom': 19.2.3(@types/react@19.2.15)
'@radix-ui/rect@1.1.1': {}
- '@react-google-maps/api@2.20.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-google-maps/api@2.20.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@googlemaps/js-api-loader': 1.16.8
'@googlemaps/markerclusterer': 2.5.3
@@ -7758,8 +7975,8 @@ snapshots:
'@react-google-maps/marker-clusterer': 2.20.0
'@types/google.maps': 3.58.1
invariant: 2.2.4
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
'@react-google-maps/infobox@2.20.0': {}
@@ -8003,7 +8220,7 @@ snapshots:
'@sentry/core@10.34.0': {}
- '@sentry/nextjs@10.34.0(@opentelemetry/context-async-hooks@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.4.0(@opentelemetry/api@1.9.0))(next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.104.1)':
+ '@sentry/nextjs@10.34.0(@opentelemetry/context-async-hooks@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.4.0(@opentelemetry/api@1.9.0))(next@16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)(webpack@5.104.1)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.39.0
@@ -8013,10 +8230,10 @@ snapshots:
'@sentry/core': 10.34.0
'@sentry/node': 10.34.0
'@sentry/opentelemetry': 10.34.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.4.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.39.0)
- '@sentry/react': 10.34.0(react@18.3.1)
+ '@sentry/react': 10.34.0(react@19.2.6)
'@sentry/vercel-edge': 10.34.0
'@sentry/webpack-plugin': 4.6.2(webpack@5.104.1)
- next: 14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
rollup: 4.55.1
stacktrace-parser: 0.1.11
transitivePeerDependencies:
@@ -8093,11 +8310,11 @@ snapshots:
'@opentelemetry/semantic-conventions': 1.39.0
'@sentry/core': 10.34.0
- '@sentry/react@10.34.0(react@18.3.1)':
+ '@sentry/react@10.34.0(react@19.2.6)':
dependencies:
'@sentry/browser': 10.34.0
'@sentry/core': 10.34.0
- react: 18.3.1
+ react: 19.2.6
'@sentry/vercel-edge@10.34.0':
dependencies:
@@ -8217,11 +8434,8 @@ snapshots:
- supports-color
- typescript
- '@swc/counter@0.1.3': {}
-
- '@swc/helpers@0.5.5':
+ '@swc/helpers@0.5.15':
dependencies:
- '@swc/counter': 0.1.3
tslib: 2.8.1
'@tailwindcss/node@4.1.18':
@@ -8296,27 +8510,22 @@ snapshots:
'@tanstack/query-devtools@5.92.0': {}
- '@tanstack/react-query-devtools@5.91.2(@tanstack/react-query@5.90.19(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-query-devtools@5.91.2(@tanstack/react-query@5.90.19(react@19.2.6))(react@19.2.6)':
dependencies:
'@tanstack/query-devtools': 5.92.0
- '@tanstack/react-query': 5.90.19(react@18.3.1)
- react: 18.3.1
-
- '@tanstack/react-query@5.90.19(react@18.3.1)':
- dependencies:
- '@tanstack/query-core': 5.90.19
- react: 18.3.1
+ '@tanstack/react-query': 5.90.19(react@19.2.6)
+ react: 19.2.6
'@tanstack/react-query@5.90.19(react@19.2.6)':
dependencies:
'@tanstack/query-core': 5.90.19
react: 19.2.6
- '@tanstack/react-virtual@3.13.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-virtual@3.13.18(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@tanstack/virtual-core': 3.13.18
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
'@tanstack/virtual-core@3.13.18': {}
@@ -8423,10 +8632,18 @@ snapshots:
dependencies:
'@types/react': 19.2.10
+ '@types/react-dom@19.2.3(@types/react@19.2.15)':
+ dependencies:
+ '@types/react': 19.2.15
+
'@types/react@19.2.10':
dependencies:
csstype: 3.2.3
+ '@types/react@19.2.15':
+ dependencies:
+ csstype: 3.2.3
+
'@types/request@2.48.13':
dependencies:
'@types/caseless': 0.12.5
@@ -8448,23 +8665,23 @@ snapshots:
dependencies:
unpic: 4.2.2
- '@unpic/react@1.0.2(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@unpic/react@1.0.2(next@16.2.6(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@unpic/core': 1.0.3
react: 19.2.6
react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
- next: 14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ next: 16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@vercel/og@0.8.6':
dependencies:
'@resvg/resvg-wasm': 2.4.0
satori: 0.16.0
- '@vercel/speed-insights@1.3.1(next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@vercel/speed-insights@1.3.1(next@16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)':
optionalDependencies:
- next: 14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ next: 16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
'@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
dependencies:
@@ -8753,6 +8970,8 @@ snapshots:
base64-js@1.5.1: {}
+ baseline-browser-mapping@2.10.32: {}
+
baseline-browser-mapping@2.9.15: {}
bidi-js@1.0.3:
@@ -8785,10 +9004,6 @@ snapshots:
buffer-from@1.1.2: {}
- busboy@1.6.0:
- dependencies:
- streamsearch: 1.1.0
-
cac@6.7.14: {}
call-bind-apply-helpers@1.0.2:
@@ -9863,10 +10078,10 @@ snapshots:
lines-and-columns@1.2.4: {}
- linkify-react@4.3.2(linkifyjs@4.3.2)(react@18.3.1):
+ linkify-react@4.3.2(linkifyjs@4.3.2)(react@19.2.6):
dependencies:
linkifyjs: 4.3.2
- react: 18.3.1
+ react: 19.2.6
linkifyjs@4.3.2: {}
@@ -9944,9 +10159,9 @@ snapshots:
lodash.clonedeep: 4.5.0
lru-cache: 6.0.0
- lucide-react@0.479.0(react@18.3.1):
+ lucide-react@0.479.0(react@19.2.6):
dependencies:
- react: 18.3.1
+ react: 19.2.6
lucide-react@0.561.0(react@19.2.6):
dependencies:
@@ -10024,58 +10239,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- next@14.2.35(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
- dependencies:
- '@next/env': 14.2.35
- '@swc/helpers': 0.5.5
- busboy: 1.6.0
- caniuse-lite: 1.0.30001764
- graceful-fs: 4.2.11
- postcss: 8.4.31
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.28.6)(react@18.3.1)
- optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.33
- '@next/swc-darwin-x64': 14.2.33
- '@next/swc-linux-arm64-gnu': 14.2.33
- '@next/swc-linux-arm64-musl': 14.2.33
- '@next/swc-linux-x64-gnu': 14.2.33
- '@next/swc-linux-x64-musl': 14.2.33
- '@next/swc-win32-arm64-msvc': 14.2.33
- '@next/swc-win32-ia32-msvc': 14.2.33
- '@next/swc-win32-x64-msvc': 14.2.33
- '@opentelemetry/api': 1.9.0
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
-
- next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ next@16.2.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
dependencies:
- '@next/env': 14.2.35
- '@swc/helpers': 0.5.5
- busboy: 1.6.0
+ '@next/env': 16.2.6
+ '@swc/helpers': 0.5.15
+ baseline-browser-mapping: 2.10.32
caniuse-lite: 1.0.30001764
- graceful-fs: 4.2.11
postcss: 8.4.31
react: 19.2.6
react-dom: 19.2.6(react@19.2.6)
- styled-jsx: 5.1.1(react@19.2.6)
+ styled-jsx: 5.1.6(@babel/core@7.28.6)(react@19.2.6)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.33
- '@next/swc-darwin-x64': 14.2.33
- '@next/swc-linux-arm64-gnu': 14.2.33
- '@next/swc-linux-arm64-musl': 14.2.33
- '@next/swc-linux-x64-gnu': 14.2.33
- '@next/swc-linux-x64-musl': 14.2.33
- '@next/swc-win32-arm64-msvc': 14.2.33
- '@next/swc-win32-ia32-msvc': 14.2.33
- '@next/swc-win32-x64-msvc': 14.2.33
+ '@next/swc-darwin-arm64': 16.2.6
+ '@next/swc-darwin-x64': 16.2.6
+ '@next/swc-linux-arm64-gnu': 16.2.6
+ '@next/swc-linux-arm64-musl': 16.2.6
+ '@next/swc-linux-x64-gnu': 16.2.6
+ '@next/swc-linux-x64-musl': 16.2.6
+ '@next/swc-win32-arm64-msvc': 16.2.6
+ '@next/swc-win32-x64-msvc': 16.2.6
'@opentelemetry/api': 1.9.0
+ sharp: 0.34.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- optional: true
nf3@0.3.17: {}
@@ -10300,7 +10487,7 @@ snapshots:
postcss@8.4.31:
dependencies:
- nanoid: 3.3.11
+ nanoid: 3.3.12
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -10367,48 +10554,42 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- react-dom@18.3.1(react@18.3.1):
- dependencies:
- loose-envify: 1.4.0
- react: 18.3.1
- scheduler: 0.23.2
-
react-dom@19.2.6(react@19.2.6):
dependencies:
react: 19.2.6
scheduler: 0.27.0
- react-hook-form@7.71.1(react@18.3.1):
+ react-hook-form@7.71.1(react@19.2.6):
dependencies:
- react: 18.3.1
+ react: 19.2.6
- react-hot-toast@2.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-hot-toast@2.6.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
dependencies:
csstype: 3.2.3
goober: 2.1.18(csstype@3.2.3)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
react-is@17.0.2: {}
- react-remove-scroll-bar@2.3.8(@types/react@19.2.10)(react@18.3.1):
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.15)(react@19.2.6):
dependencies:
- react: 18.3.1
- react-style-singleton: 2.2.3(@types/react@19.2.10)(react@18.3.1)
+ react: 19.2.6
+ react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- react-remove-scroll@2.7.2(@types/react@19.2.10)(react@18.3.1):
+ react-remove-scroll@2.7.2(@types/react@19.2.15)(react@19.2.6):
dependencies:
- react: 18.3.1
- react-remove-scroll-bar: 2.3.8(@types/react@19.2.10)(react@18.3.1)
- react-style-singleton: 2.2.3(@types/react@19.2.10)(react@18.3.1)
+ react: 19.2.6
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.15)(react@19.2.6)
+ react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.2.10)(react@18.3.1)
- use-sidecar: 1.1.3(@types/react@19.2.10)(react@18.3.1)
+ use-callback-ref: 1.3.3(@types/react@19.2.15)(react@19.2.6)
+ use-sidecar: 1.1.3(@types/react@19.2.15)(react@19.2.6)
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)):
dependencies:
@@ -10419,17 +10600,13 @@ snapshots:
webpack: 5.104.1(esbuild@0.27.2)
webpack-sources: 3.3.3
- react-style-singleton@2.2.3(@types/react@19.2.10)(react@18.3.1):
+ react-style-singleton@2.2.3(@types/react@19.2.15)(react@19.2.6):
dependencies:
get-nonce: 1.0.1
- react: 18.3.1
+ react: 19.2.6
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.10
-
- react@18.3.1:
- dependencies:
- loose-envify: 1.4.0
+ '@types/react': 19.2.15
react@19.2.4: {}
@@ -10590,10 +10767,6 @@ snapshots:
dependencies:
xmlchars: 2.2.0
- scheduler@0.23.2:
- dependencies:
- loose-envify: 1.4.0
-
scheduler@0.27.0: {}
schema-utils@4.3.3:
@@ -10611,6 +10784,38 @@ snapshots:
dependencies:
randombytes: 2.1.0
+ sharp@0.34.5:
+ dependencies:
+ '@img/colour': 1.1.0
+ detect-libc: 2.1.2
+ semver: 7.7.3
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.34.5
+ '@img/sharp-darwin-x64': 0.34.5
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
+ '@img/sharp-libvips-darwin-x64': 1.2.4
+ '@img/sharp-libvips-linux-arm': 1.2.4
+ '@img/sharp-libvips-linux-arm64': 1.2.4
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
+ '@img/sharp-libvips-linux-s390x': 1.2.4
+ '@img/sharp-libvips-linux-x64': 1.2.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
+ '@img/sharp-linux-arm': 0.34.5
+ '@img/sharp-linux-arm64': 0.34.5
+ '@img/sharp-linux-ppc64': 0.34.5
+ '@img/sharp-linux-riscv64': 0.34.5
+ '@img/sharp-linux-s390x': 0.34.5
+ '@img/sharp-linux-x64': 0.34.5
+ '@img/sharp-linuxmusl-arm64': 0.34.5
+ '@img/sharp-linuxmusl-x64': 0.34.5
+ '@img/sharp-wasm32': 0.34.5
+ '@img/sharp-win32-arm64': 0.34.5
+ '@img/sharp-win32-ia32': 0.34.5
+ '@img/sharp-win32-x64': 0.34.5
+ optional: true
+
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
@@ -10676,8 +10881,6 @@ snapshots:
stream-shift@1.0.3:
optional: true
- streamsearch@1.1.0: {}
-
string-width@4.2.3:
dependencies:
emoji-regex: 8.0.0
@@ -10715,19 +10918,13 @@ snapshots:
stubs@3.0.0:
optional: true
- styled-jsx@5.1.1(@babel/core@7.28.6)(react@18.3.1):
+ styled-jsx@5.1.6(@babel/core@7.28.6)(react@19.2.6):
dependencies:
client-only: 0.0.1
- react: 18.3.1
+ react: 19.2.6
optionalDependencies:
'@babel/core': 7.28.6
- styled-jsx@5.1.1(react@19.2.6):
- dependencies:
- client-only: 0.0.1
- react: 19.2.6
- optional: true
-
sucrase@3.35.1:
dependencies:
'@jridgewell/gen-mapping': 0.3.13
@@ -11003,24 +11200,24 @@ snapshots:
querystringify: 2.2.0
requires-port: 1.0.0
- use-callback-ref@1.3.3(@types/react@19.2.10)(react@18.3.1):
+ use-callback-ref@1.3.3(@types/react@19.2.15)(react@19.2.6):
dependencies:
- react: 18.3.1
+ react: 19.2.6
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- use-sidecar@1.1.3(@types/react@19.2.10)(react@18.3.1):
+ use-sidecar@1.1.3(@types/react@19.2.15)(react@19.2.6):
dependencies:
detect-node-es: 1.1.0
- react: 18.3.1
+ react: 19.2.6
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.10
+ '@types/react': 19.2.15
- use-sync-external-store@1.6.0(react@18.3.1):
+ use-sync-external-store@1.6.0(react@19.2.6):
dependencies:
- react: 18.3.1
+ react: 19.2.6
optional: true
util-deprecate@1.0.2: {}
@@ -11032,9 +11229,9 @@ snapshots:
uuid@9.0.1: {}
- vinext@0.0.51(@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(@vitejs/plugin-rsc@0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
+ vinext@0.0.51(@vitejs/plugin-react@6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(@vitejs/plugin-rsc@0.5.26(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(next@16.2.6(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react-server-dom-webpack@19.2.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(webpack@5.104.1(esbuild@0.27.2)))(react@19.2.6)(typescript@5.9.3)(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
dependencies:
- '@unpic/react': 1.0.2(next@14.2.35(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@unpic/react': 1.0.2(next@16.2.6(@opentelemetry/api@1.9.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@vercel/og': 0.8.6
'@vitejs/plugin-react': 6.0.2(vite@8.0.14(@types/node@22.19.7)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
image-size: 2.0.2
@@ -11367,8 +11564,8 @@ snapshots:
zod@4.3.5: {}
- zustand@5.0.10(@types/react@19.2.10)(react@18.3.1)(use-sync-external-store@1.6.0(react@18.3.1)):
+ zustand@5.0.10(@types/react@19.2.15)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6)):
optionalDependencies:
- '@types/react': 19.2.10
- react: 18.3.1
- use-sync-external-store: 1.6.0(react@18.3.1)
+ '@types/react': 19.2.15
+ react: 19.2.6
+ use-sync-external-store: 1.6.0(react@19.2.6)