mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-28 01:20:24 -05:00
chore: update root npm dependencies (#5208)
This commit is contained in:
@@ -12,10 +12,13 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@formbricks/js": "workspace:*",
|
||||
"@tailwindcss/forms": "0.5.9",
|
||||
"lucide-react": "0.486.0",
|
||||
"next": "15.2.4",
|
||||
"postcss": "8.4.49",
|
||||
"react": "19.0.0",
|
||||
"react-dom": "19.0.0"
|
||||
"react-dom": "19.0.0",
|
||||
"tailwindcss": "3.4.16"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
|
||||
+10
-10
@@ -18,22 +18,22 @@
|
||||
"devDependencies": {
|
||||
"@chromatic-com/storybook": "3.2.6",
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
"@storybook/addon-a11y": "8.6.11",
|
||||
"@storybook/addon-essentials": "8.6.11",
|
||||
"@storybook/addon-interactions": "8.6.11",
|
||||
"@storybook/addon-links": "8.6.11",
|
||||
"@storybook/addon-onboarding": "8.6.11",
|
||||
"@storybook/blocks": "8.6.11",
|
||||
"@storybook/react": "8.6.11",
|
||||
"@storybook/react-vite": "8.6.11",
|
||||
"@storybook/test": "8.6.11",
|
||||
"@storybook/addon-a11y": "8.6.12",
|
||||
"@storybook/addon-essentials": "8.6.12",
|
||||
"@storybook/addon-interactions": "8.6.12",
|
||||
"@storybook/addon-links": "8.6.12",
|
||||
"@storybook/addon-onboarding": "8.6.12",
|
||||
"@storybook/blocks": "8.6.12",
|
||||
"@storybook/react": "8.6.12",
|
||||
"@storybook/react-vite": "8.6.12",
|
||||
"@storybook/test": "8.6.12",
|
||||
"@typescript-eslint/eslint-plugin": "8.29.0",
|
||||
"@typescript-eslint/parser": "8.29.0",
|
||||
"@vitejs/plugin-react": "4.3.4",
|
||||
"esbuild": "0.25.2",
|
||||
"eslint-plugin-storybook": "0.12.0",
|
||||
"prop-types": "15.8.1",
|
||||
"storybook": "8.6.11",
|
||||
"storybook": "8.6.12",
|
||||
"tsup": "8.4.0",
|
||||
"vite": "6.2.4"
|
||||
}
|
||||
|
||||
@@ -40,10 +40,6 @@ vi.mock("@/tolgee/server", () => ({
|
||||
getTolgee: vi.fn(),
|
||||
}));
|
||||
|
||||
vi.mock("@vercel/speed-insights/next", () => ({
|
||||
SpeedInsights: () => <div data-testid="speed-insights">SpeedInsights</div>,
|
||||
}));
|
||||
|
||||
vi.mock("@/modules/ui/components/post-hog-client", () => ({
|
||||
PHProvider: ({ children, posthogEnabled }: { children: React.ReactNode; posthogEnabled: boolean }) => (
|
||||
<div data-testid="ph-provider">
|
||||
@@ -101,10 +97,6 @@ describe("RootLayout", () => {
|
||||
const element = await RootLayout({ children });
|
||||
render(element);
|
||||
|
||||
// log env vercel
|
||||
console.log("vercel", process.env.VERCEL);
|
||||
|
||||
expect(screen.getByTestId("speed-insights")).toBeInTheDocument();
|
||||
expect(screen.getByTestId("tolgee-next-provider")).toBeInTheDocument();
|
||||
expect(screen.getByTestId("sentry-provider")).toBeInTheDocument();
|
||||
expect(screen.getByTestId("child")).toHaveTextContent("Child Content");
|
||||
|
||||
@@ -3,7 +3,6 @@ import { TolgeeNextProvider } from "@/tolgee/client";
|
||||
import { getLocale } from "@/tolgee/language";
|
||||
import { getTolgee } from "@/tolgee/server";
|
||||
import { TolgeeStaticData } from "@tolgee/react";
|
||||
import { SpeedInsights } from "@vercel/speed-insights/next";
|
||||
import { Metadata } from "next";
|
||||
import React from "react";
|
||||
import { SENTRY_DSN } from "@formbricks/lib/constants";
|
||||
@@ -26,7 +25,6 @@ const RootLayout = async ({ children }: { children: React.ReactNode }) => {
|
||||
return (
|
||||
<html lang={locale} translate="no">
|
||||
<body className="flex h-dvh flex-col transition-all ease-in-out">
|
||||
{process.env.VERCEL === "1" && <SpeedInsights sampleRate={0.1} />}
|
||||
<SentryProvider sentryDsn={SENTRY_DSN}>
|
||||
<TolgeeNextProvider language={locale} staticData={staticData as unknown as TolgeeStaticData}>
|
||||
{children}
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
"@formbricks/js": "workspace:*",
|
||||
"@formbricks/js-core": "workspace:*",
|
||||
"@formbricks/lib": "workspace:*",
|
||||
"@formbricks/surveys": "workspace:*",
|
||||
"@formbricks/logger": "workspace:*",
|
||||
"@formbricks/surveys": "workspace:*",
|
||||
"@formbricks/types": "workspace:*",
|
||||
"@hookform/resolvers": "3.9.1",
|
||||
"@intercom/messenger-js-sdk": "0.0.14",
|
||||
@@ -81,7 +81,6 @@
|
||||
"@vercel/functions": "1.5.2",
|
||||
"@vercel/og": "0.6.4",
|
||||
"@vercel/otel": "1.10.0",
|
||||
"@vercel/speed-insights": "1.1.0",
|
||||
"ai": "4.1.17",
|
||||
"autoprefixer": "10.4.20",
|
||||
"bcryptjs": "2.4.3",
|
||||
@@ -105,7 +104,7 @@
|
||||
"lru-cache": "11.0.2",
|
||||
"lucide-react": "0.468.0",
|
||||
"mime": "4.0.4",
|
||||
"next": "15.2.3",
|
||||
"next": "15.2.4",
|
||||
"next-auth": "4.24.11",
|
||||
"next-safe-action": "7.10.2",
|
||||
"node-fetch": "3.3.2",
|
||||
@@ -114,6 +113,7 @@
|
||||
"optional": "0.1.4",
|
||||
"otplib": "12.0.1",
|
||||
"papaparse": "5.4.1",
|
||||
"postcss": "8.4.49",
|
||||
"posthog-js": "1.200.2",
|
||||
"prismjs": "1.30.0",
|
||||
"qr-code-styling": "1.9.1",
|
||||
@@ -132,14 +132,14 @@
|
||||
"redis": "4.7.0",
|
||||
"sharp": "0.33.5",
|
||||
"stripe": "16.7.0",
|
||||
"tailwind-merge": "2.5.5",
|
||||
"tailwind-merge": "3.1.0",
|
||||
"tailwindcss": "3.4.16",
|
||||
"ua-parser-js": "2.0.0",
|
||||
"uuid": "11.1.0",
|
||||
"webpack": "5.97.1",
|
||||
"xlsx": "0.18.5",
|
||||
"zod": "3.24.1",
|
||||
"zod-openapi": "4.2.3"
|
||||
"zod-openapi": "4.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
|
||||
+6
-6
@@ -37,15 +37,15 @@
|
||||
"tolgee-pull": "BRANCH_NAME=$(node -p \"require('./branch.json').branchName\") && tolgee pull --tags \"draft:$BRANCH_NAME\" \"production\" && prettier --write ./packages/lib/messages/*.json"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@azure/microsoft-playwright-testing": "1.0.0-beta.6",
|
||||
"@azure/microsoft-playwright-testing": "1.0.0-beta.7",
|
||||
"@formbricks/eslint-config": "workspace:*",
|
||||
"@playwright/test": "1.49.1",
|
||||
"@playwright/test": "1.51.1",
|
||||
"eslint": "8.57.0",
|
||||
"husky": "9.1.7",
|
||||
"lint-staged": "15.2.11",
|
||||
"lint-staged": "15.5.0",
|
||||
"rimraf": "6.0.1",
|
||||
"tsx": "4.19.2",
|
||||
"turbo": "2.3.3"
|
||||
"tsx": "4.19.3",
|
||||
"turbo": "2.4.4"
|
||||
},
|
||||
"lint-staged": {
|
||||
"(apps|packages)/**/*.{js,ts,jsx,tsx}": [
|
||||
@@ -70,6 +70,6 @@
|
||||
"showDetails": true
|
||||
},
|
||||
"dependencies": {
|
||||
"@changesets/cli": "2.27.10"
|
||||
"@changesets/cli": "2.28.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,16 +3,16 @@
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"@next/eslint-plugin-next": "15.1.0",
|
||||
"@typescript-eslint/eslint-plugin": "8.18.0",
|
||||
"@typescript-eslint/parser": "8.18.0",
|
||||
"@next/eslint-plugin-next": "15.2.4",
|
||||
"@typescript-eslint/eslint-plugin": "8.29.0",
|
||||
"@typescript-eslint/parser": "8.29.0",
|
||||
"@vercel/style-guide": "6.0.0",
|
||||
"eslint-config-next": "15.1.0",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"eslint-config-next": "15.2.4",
|
||||
"eslint-config-prettier": "10.1.1",
|
||||
"eslint-config-turbo": "2.3.3",
|
||||
"eslint-plugin-i18n-json": "4.0.0",
|
||||
"eslint-plugin-react": "7.37.2",
|
||||
"eslint-plugin-react-hooks": "5.1.0",
|
||||
"eslint-plugin-react-refresh": "0.4.16"
|
||||
"eslint-plugin-i18n-json": "4.0.1",
|
||||
"eslint-plugin-react": "7.37.4",
|
||||
"eslint-plugin-react-hooks": "5.2.0",
|
||||
"eslint-plugin-react-refresh": "0.4.19"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,10 +24,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@prisma/client": "6.0.1",
|
||||
"@prisma/extension-accelerate": "1.2.1",
|
||||
"dotenv-cli": "7.4.4",
|
||||
"@prisma/extension-accelerate": "1.3.0",
|
||||
"dotenv-cli": "8.0.0",
|
||||
"@formbricks/logger": "workspace:*",
|
||||
"zod-openapi": "4.2.3"
|
||||
"zod-openapi": "4.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
@@ -37,6 +37,6 @@
|
||||
"prisma-dbml-generator": "0.12.0",
|
||||
"ts-node": "10.9.2",
|
||||
"zod": "3.24.1",
|
||||
"prisma-json-types-generator": "3.2.2"
|
||||
"prisma-json-types-generator": "3.2.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -43,8 +43,8 @@
|
||||
"@formbricks/js-core": "workspace:*",
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
"@formbricks/eslint-config": "workspace:*",
|
||||
"terser": "5.37.0",
|
||||
"vite": "6.0.12",
|
||||
"vite-plugin-dts": "4.3.0"
|
||||
"terser": "5.39.0",
|
||||
"vite": "6.2.4",
|
||||
"vite-plugin-dts": "4.5.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,15 +35,15 @@
|
||||
},
|
||||
"author": "Formbricks <hola@formbricks.com>",
|
||||
"dependencies": {
|
||||
"zod": "3.24.1",
|
||||
"pino": "^8.0.0",
|
||||
"pino-pretty": "^10.0.0"
|
||||
"zod": "3.24.2",
|
||||
"pino": "^9.6.0",
|
||||
"pino-pretty": "^13.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vite": "^6.0.12",
|
||||
"vite": "^6.2.4",
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
"vitest": "3.0.7",
|
||||
"vitest": "3.1.1",
|
||||
"@formbricks/eslint-config": "workspace:*",
|
||||
"vite-plugin-dts": "4.3.0"
|
||||
"vite-plugin-dts": "4.5.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,6 +14,6 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"zod": "3.24.1",
|
||||
"zod-openapi": "4.2.3"
|
||||
"zod-openapi": "4.2.4"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
"devDependencies": {
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
"@formbricks/eslint-config": "workspace:*",
|
||||
"vite": "6.0.12"
|
||||
"vite": "6.2.4"
|
||||
}
|
||||
}
|
||||
|
||||
Generated
+1293
-1157
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user