Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tooltip": "1.1.8",
"@sentry/nextjs": "9.5.0",
"@shazow/whatsabi": "0.20.0",
"@tanstack/react-query": "5.67.3",
"@sentry/nextjs": "9.11.0",
"@shazow/whatsabi": "0.21.0",
"@tanstack/react-query": "5.71.10",
"@tanstack/react-table": "^8.21.2",
"@thirdweb-dev/service-utils": "workspace:*",
"@vercel/functions": "2.0.0",
"@vercel/og": "^0.6.5",
"@vercel/og": "^0.6.8",
"abitype": "1.0.8",
"chakra-react-select": "^4.7.6",
"class-variance-authority": "^0.7.1",
Expand Down Expand Up @@ -79,24 +79,24 @@
"pluralize": "^8.0.0",
"posthog-js": "1.67.1",
"qrcode": "^1.5.3",
"react": "19.0.0",
"react": "19.1.0",
"react-children-utilities": "^2.10.0",
"react-day-picker": "^8.10.1",
"react-dom": "19.0.0",
"react-dom": "19.1.0",
"react-dropzone": "^14.3.8",
"react-error-boundary": "^5.0.0",
"react-hook-form": "7.54.2",
"react-hook-form": "7.55.0",
"react-markdown": "^9.0.1",
"react-table": "^7.8.0",
"recharts": "2.15.1",
"recharts": "2.15.2",
"remark-gfm": "4.0.1",
"responsive-rsc": "0.0.7",
"server-only": "^0.0.1",
"shiki": "1.27.0",
"sonner": "2.0.1",
"sonner": "2.0.3",
"spdx-correct": "^3.2.0",
"stripe": "17.7.0",
"swagger-ui-react": "^5.20.1",
"swagger-ui-react": "^5.20.6",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"thirdweb": "workspace:*",
Expand All @@ -110,38 +110,38 @@
"@next/bundle-analyzer": "15.2.4",
"@next/eslint-plugin-next": "15.2.4",
"@playwright/test": "1.51.1",
"@storybook/addon-essentials": "8.6.4",
"@storybook/addon-interactions": "8.6.4",
"@storybook/addon-links": "8.6.4",
"@storybook/addon-onboarding": "8.6.4",
"@storybook/addon-viewport": "8.6.4",
"@storybook/blocks": "8.6.4",
"@storybook/nextjs": "8.6.4",
"@storybook/react": "8.6.4",
"@storybook/test": "8.6.4",
"@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/addon-viewport": "8.6.12",
"@storybook/blocks": "8.6.12",
"@storybook/nextjs": "8.6.12",
"@storybook/react": "8.6.12",
"@storybook/test": "8.6.12",
"@types/color": "4.2.0",
"@types/node": "22.13.10",
"@types/node": "22.14.0",
"@types/papaparse": "^5.3.15",
"@types/pluralize": "^0.0.33",
"@types/qrcode": "^1.5.5",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"@types/react-table": "^7.7.20",
"@types/spdx-correct": "^3.1.3",
"@types/swagger-ui-react": "^4.19.0",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"autoprefixer": "^10.4.21",
"checkly": "5.0.1",
"checkly": "5.2.0",
"eslint": "8.57.0",
"eslint-config-biome": "1.9.4",
"eslint-plugin-react-compiler": "19.0.0-beta-40c6c23-20250301",
"eslint-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
"eslint-plugin-storybook": "0.12.0",
"knip": "5.46.0",
"knip": "5.46.5",
"next-sitemap": "^4.2.3",
"postcss": "8.5.3",
"storybook": "8.6.4",
"storybook": "8.6.12",
"tailwindcss": "3.4.17",
"typescript": "5.8.2"
"typescript": "5.8.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,7 @@ const ModalBodyInputContract = ({
form,
setModalState,
}: {
// biome-ignore lint/suspicious/noExplicitAny: FIXME
form: UseFormReturn<AddContractSubscriptionForm, any, undefined>;
form: UseFormReturn<AddContractSubscriptionForm>;
setModalState: Dispatch<SetStateAction<"inputContract" | "inputData">>;
}) => {
return (
Expand Down Expand Up @@ -278,8 +277,7 @@ const ModalBodyInputData = ({
form,
setModalState,
}: {
// biome-ignore lint/suspicious/noExplicitAny: FIXME
form: UseFormReturn<AddContractSubscriptionForm, any, undefined>;
form: UseFormReturn<AddContractSubscriptionForm>;
setModalState: Dispatch<SetStateAction<"inputContract" | "inputData">>;
}) => {
const processEventLogsDisclosure = useDisclosure({
Expand Down Expand Up @@ -466,8 +464,8 @@ const FilterSelector = ({
setFilter,
}: {
abiItemType: "function" | "event";
// biome-ignore lint/suspicious/noExplicitAny: FIXME
form: UseFormReturn<AddContractSubscriptionForm, any, undefined>;

form: UseFormReturn<AddContractSubscriptionForm>;
filter: string[];
setFilter: (value: string[]) => void;
}) => {
Expand Down
16 changes: 8 additions & 8 deletions apps/login/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@
"lucide-react": "0.483.0",
"next": "15.2.4",
"next-themes": "^0.4.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"server-only": "^0.0.1",
"sonner": "2.0.1",
"sonner": "2.0.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"thirdweb": "workspace:*"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@eslint/eslintrc": "^3.3.1",
"@types/node": "22.14.0",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"eslint": "9.22.0",
"eslint-config-next": "15.2.4",
"postcss": "8.5.3",
"tailwindcss": "3.4.17",
"typescript": "5.8.2"
"typescript": "5.8.3"
}
}
18 changes: 9 additions & 9 deletions apps/playground-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "1.1.8",
"@tanstack/react-query": "5.67.3",
"@tanstack/react-query": "5.71.10",
"@thirdweb-dev/engine": "^0.0.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand All @@ -44,9 +44,9 @@
"openapi-types": "^12.1.3",
"posthog-js": "1.67.1",
"prettier": "3.5.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "7.55.0",
"react-pick-color": "^2.0.0",
"server-only": "^0.0.1",
"shiki": "1.27.0",
Expand All @@ -57,15 +57,15 @@
"zod": "3.24.2"
},
"devDependencies": {
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/node": "22.14.0",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"eslint": "8.57.0",
"eslint-config-next": "15.2.4",
"eslint-plugin-react-compiler": "19.0.0-beta-40c6c23-20250301",
"eslint-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
"postcss": "8.5.3",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.8.2"
"typescript": "5.8.3"
}
}
20 changes: 10 additions & 10 deletions apps/portal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@tanstack/react-query": "5.67.3",
"@tanstack/react-query": "5.71.10",
"@tryghost/content-api": "^1.11.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand All @@ -42,8 +42,8 @@
"node-html-parser": "^6.1.13",
"posthog-js": "1.67.1",
"prettier": "3.5.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-html-parser": "2.0.2",
"remark-gfm": "3.0.1",
"server-only": "^0.0.1",
Expand All @@ -56,27 +56,27 @@
},
"devDependencies": {
"@next/eslint-plugin-next": "15.2.4",
"@types/flexsearch": "^0.7.6",
"@types/flexsearch": "^0.7.42",
"@types/he": "^1.2.3",
"@types/mdx": "^2.0.13",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/node": "22.14.0",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"@types/react-html-parser": "^2.0.7",
"@types/tryghost__content-api": "^1.3.16",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"autoprefixer": "^10.4.21",
"eslint": "8.57.0",
"eslint-config-biome": "1.9.4",
"eslint-plugin-mdx": "3.2.0",
"eslint-plugin-mdx": "3.3.2",
"eslint-plugin-svg-jsx": "^1.2.4",
"eslint-plugin-tailwindcss": "^3.18.0",
"knip": "5.46.0",
"knip": "5.46.5",
"next-sitemap": "^4.2.3",
"postcss": "8.5.3",
"tailwindcss": "3.4.17",
"tsx": "4.19.3",
"typescript": "5.8.2"
"typescript": "5.8.3"
}
}
24 changes: 12 additions & 12 deletions apps/wallet-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@tanstack/react-query": "5.67.3",
"@tanstack/react-query": "5.71.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"cmdk": "^1.1.1",
"lucide-react": "0.483.0",
"next": "15.2.4",
"next-themes": "^0.4.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "7.55.0",
"server-only": "^0.0.1",
"sonner": "2.0.1",
"sonner": "2.0.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"thirdweb": "workspace:*",
Expand All @@ -35,18 +35,18 @@
},
"devDependencies": {
"@next/eslint-plugin-next": "15.2.4",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/node": "22.14.0",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"eslint": "8.57.0",
"eslint-config-biome": "1.9.4",
"eslint-plugin-react-compiler": "19.0.0-beta-40c6c23-20250301",
"knip": "5.46.0",
"eslint-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
"knip": "5.46.5",
"postcss": "8.5.3",
"postcss-load-config": "^6.0.1",
"tailwindcss": "3.4.17",
"typescript": "5.8.2"
"typescript": "5.8.3"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.28.1",
"@manypkg/get-packages": "2.2.2",
"@types/node": "22.13.10",
"turbo": "2.4.4",
"typescript": "5.8.2"
"@types/node": "22.14.0",
"turbo": "2.5.0",
"typescript": "5.8.3"
},
"pnpm": {
"overrides": {
Expand Down
8 changes: 4 additions & 4 deletions packages/service-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
"zod": "3.24.2"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20250312.0",
"@types/node": "22.13.10",
"typescript": "5.8.2",
"vitest": "3.0.9"
"@cloudflare/workers-types": "4.20250405.0",
"@types/node": "22.14.0",
"typescript": "5.8.3",
"vitest": "3.1.1"
},
"scripts": {
"format": "biome format ./src --write",
Expand Down
Loading