Updated dependencies, reintroduced bundle analyzer (#159)

This commit is contained in:
Giancarlo Buomprisco
2025-02-11 10:48:28 +07:00
committed by GitHub
parent f5a961f155
commit f2c74bd11c
25 changed files with 655 additions and 649 deletions

View File

@@ -13,7 +13,7 @@
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.50.1", "@playwright/test": "^1.50.1",
"@types/node": "^22.13.0", "@types/node": "^22.13.1",
"node-html-parser": "^7.0.1" "node-html-parser": "^7.0.1"
} }
} }

View File

@@ -1,3 +1,5 @@
import withBundleAnalyzer from '@next/bundle-analyzer';
const IS_PRODUCTION = process.env.NODE_ENV === 'production'; const IS_PRODUCTION = process.env.NODE_ENV === 'production';
const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL; const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL;
const ENABLE_REACT_COMPILER = process.env.ENABLE_REACT_COMPILER === 'true'; const ENABLE_REACT_COMPILER = process.env.ENABLE_REACT_COMPILER === 'true';
@@ -67,7 +69,9 @@ const config = {
typescript: { ignoreBuildErrors: true }, typescript: { ignoreBuildErrors: true },
}; };
export default config; export default withBundleAnalyzer({
enabled: process.env.ANALYZE === 'true',
})(config);
function getRemotePatterns() { function getRemotePatterns() {
/** @type {import('next').NextConfig['remotePatterns']} */ /** @type {import('next').NextConfig['remotePatterns']} */

View File

@@ -33,7 +33,7 @@
}, },
"dependencies": { "dependencies": {
"@edge-csrf/nextjs": "2.5.3-cloudflare-rc1", "@edge-csrf/nextjs": "2.5.3-cloudflare-rc1",
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^4.0.0",
"@kit/accounts": "workspace:*", "@kit/accounts": "workspace:*",
"@kit/admin": "workspace:*", "@kit/admin": "workspace:*",
"@kit/analytics": "workspace:*", "@kit/analytics": "workspace:*",
@@ -61,7 +61,7 @@
"@tanstack/react-table": "^8.20.6", "@tanstack/react-table": "^8.20.6",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.475.0", "lucide-react": "^0.475.0",
"next": "15.1.6", "next": "15.1.7",
"next-sitemap": "^4.2.3", "next-sitemap": "^4.2.3",
"next-themes": "0.4.4", "next-themes": "0.4.4",
"react": "19.0.0", "react": "19.0.0",
@@ -77,10 +77,10 @@
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@next/bundle-analyzer": "15.1.6", "@next/bundle-analyzer": "15.1.7",
"@tailwindcss/postcss": "^4.0.5", "@tailwindcss/postcss": "^4.0.6",
"@types/mdx": "^2.0.13", "@types/mdx": "^2.0.13",
"@types/node": "^22.13.0", "@types/node": "^22.13.1",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"@types/react-dom": "19.0.3", "@types/react-dom": "19.0.3",
"autoprefixer": "^10.4.20", "autoprefixer": "^10.4.20",
@@ -88,8 +88,8 @@
"dotenv-cli": "^8.0.0", "dotenv-cli": "^8.0.0",
"pino-pretty": "^13.0.0", "pino-pretty": "^13.0.0",
"prettier": "^3.5.0", "prettier": "^3.5.0",
"supabase": "^2.9.6", "supabase": "^2.12.0",
"tailwindcss": "4.0.5", "tailwindcss": "4.0.6",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3" "typescript": "^5.7.3"
}, },

View File

@@ -43,10 +43,10 @@
}, },
"devDependencies": { "devDependencies": {
"@manypkg/cli": "^0.23.0", "@manypkg/cli": "^0.23.0",
"@turbo/gen": "^2.4.0", "@turbo/gen": "^2.4.1",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"prettier": "^3.5.0", "prettier": "^3.5.0",
"turbo": "2.4.0", "turbo": "2.4.1",
"typescript": "^5.7.3" "typescript": "^5.7.3"
} }
} }

View File

@@ -16,7 +16,7 @@
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/node": "^22.13.0" "@types/node": "^22.13.1"
}, },
"typesVersions": { "typesVersions": {
"*": { "*": {

View File

@@ -16,7 +16,7 @@
"./marketing": "./src/components/marketing.tsx" "./marketing": "./src/components/marketing.tsx"
}, },
"devDependencies": { "devDependencies": {
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^4.0.0",
"@kit/billing": "workspace:*", "@kit/billing": "workspace:*",
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
"@kit/lemon-squeezy": "workspace:*", "@kit/lemon-squeezy": "workspace:*",
@@ -30,7 +30,7 @@
"@types/react": "19.0.8", "@types/react": "19.0.8",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.475.0", "lucide-react": "^0.475.0",
"next": "15.1.6", "next": "15.1.7",
"react": "19.0.0", "react": "19.0.0",
"react-hook-form": "^7.54.2", "react-hook-form": "^7.54.2",
"react-i18next": "^15.4.0", "react-i18next": "^15.4.0",

View File

@@ -25,7 +25,7 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"next": "15.1.6", "next": "15.1.7",
"react": "19.0.0", "react": "19.0.0",
"zod": "^3.24.1" "zod": "^3.24.1"
}, },

View File

@@ -29,7 +29,7 @@
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"next": "15.1.6", "next": "15.1.7",
"react": "19.0.0", "react": "19.0.0",
"zod": "^3.24.1" "zod": "^3.24.1"
}, },

View File

@@ -20,7 +20,7 @@
"@kit/shared": "workspace:*", "@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/wordpress": "workspace:*", "@kit/wordpress": "workspace:*",
"@types/node": "^22.13.0" "@types/node": "^22.13.1"
}, },
"typesVersions": { "typesVersions": {
"*": { "*": {

View File

@@ -26,7 +26,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/node": "^22.13.0", "@types/node": "^22.13.1",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"react": "19.0.0", "react": "19.0.0",
"zod": "^3.24.1" "zod": "^3.24.1"

View File

@@ -20,7 +20,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@types/node": "^22.13.0", "@types/node": "^22.13.1",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"wp-types": "^4.67.0" "wp-types": "^4.67.0"
}, },

View File

@@ -13,7 +13,7 @@
".": "./src/index.ts" ".": "./src/index.ts"
}, },
"dependencies": { "dependencies": {
"@react-email/components": "0.0.32" "@react-email/components": "0.0.33"
}, },
"devDependencies": { "devDependencies": {
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",

View File

@@ -20,7 +20,7 @@
"nanoid": "^5.0.9" "nanoid": "^5.0.9"
}, },
"devDependencies": { "devDependencies": {
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^4.0.0",
"@kit/billing-gateway": "workspace:*", "@kit/billing-gateway": "workspace:*",
"@kit/email-templates": "workspace:*", "@kit/email-templates": "workspace:*",
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
@@ -38,7 +38,7 @@
"@types/react": "19.0.8", "@types/react": "19.0.8",
"@types/react-dom": "19.0.3", "@types/react-dom": "19.0.3",
"lucide-react": "^0.475.0", "lucide-react": "^0.475.0",
"next": "15.1.6", "next": "15.1.7",
"next-themes": "0.4.4", "next-themes": "0.4.4",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0", "react-dom": "19.0.0",

View File

@@ -10,7 +10,7 @@
}, },
"prettier": "@kit/prettier-config", "prettier": "@kit/prettier-config",
"devDependencies": { "devDependencies": {
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^4.0.0",
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
"@kit/next": "workspace:*", "@kit/next": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
@@ -25,7 +25,7 @@
"@tanstack/react-table": "^8.20.6", "@tanstack/react-table": "^8.20.6",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"lucide-react": "^0.475.0", "lucide-react": "^0.475.0",
"next": "15.1.6", "next": "15.1.7",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0", "react-dom": "19.0.0",
"react-hook-form": "^7.54.2", "react-hook-form": "^7.54.2",

View File

@@ -19,7 +19,7 @@
"./resend-email-link": "./src/components/resend-auth-link-form.tsx" "./resend-email-link": "./src/components/resend-auth-link-form.tsx"
}, },
"devDependencies": { "devDependencies": {
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^4.0.0",
"@kit/eslint-config": "workspace:*", "@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/shared": "workspace:*", "@kit/shared": "workspace:*",
@@ -32,7 +32,7 @@
"@tanstack/react-query": "5.66.0", "@tanstack/react-query": "5.66.0",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"lucide-react": "^0.475.0", "lucide-react": "^0.475.0",
"next": "15.1.6", "next": "15.1.7",
"react-hook-form": "^7.54.2", "react-hook-form": "^7.54.2",
"react-i18next": "^15.4.0", "react-i18next": "^15.4.0",
"sonner": "^1.7.4", "sonner": "^1.7.4",

View File

@@ -18,7 +18,7 @@
"nanoid": "^5.0.9" "nanoid": "^5.0.9"
}, },
"devDependencies": { "devDependencies": {
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^4.0.0",
"@kit/accounts": "workspace:*", "@kit/accounts": "workspace:*",
"@kit/billing-gateway": "workspace:*", "@kit/billing-gateway": "workspace:*",
"@kit/email-templates": "workspace:*", "@kit/email-templates": "workspace:*",
@@ -39,7 +39,7 @@
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.475.0", "lucide-react": "^0.475.0",
"next": "15.1.6", "next": "15.1.7",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0", "react-dom": "19.0.0",
"react-hook-form": "^7.54.2", "react-hook-form": "^7.54.2",

View File

@@ -21,7 +21,7 @@
"@kit/shared": "workspace:*", "@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@tanstack/react-query": "5.66.0", "@tanstack/react-query": "5.66.0",
"next": "15.1.6", "next": "15.1.7",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0", "react-dom": "19.0.0",
"react-i18next": "^15.4.0" "react-i18next": "^15.4.0"

View File

@@ -20,7 +20,7 @@
"@kit/resend": "workspace:*", "@kit/resend": "workspace:*",
"@kit/shared": "workspace:*", "@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/node": "^22.13.0", "@types/node": "^22.13.1",
"zod": "^3.24.1" "zod": "^3.24.1"
}, },
"typesVersions": { "typesVersions": {

View File

@@ -17,7 +17,7 @@
"@kit/mailers-shared": "workspace:*", "@kit/mailers-shared": "workspace:*",
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/node": "^22.13.0", "@types/node": "^22.13.1",
"zod": "^3.24.1" "zod": "^3.24.1"
}, },
"typesVersions": { "typesVersions": {

View File

@@ -16,7 +16,7 @@
"./config/server": "./src/sentry.client.server.ts" "./config/server": "./src/sentry.client.server.ts"
}, },
"dependencies": { "dependencies": {
"@sentry/nextjs": "^8.54.0", "@sentry/nextjs": "^9.0.0",
"import-in-the-middle": "1.13.0" "import-in-the-middle": "1.13.0"
}, },
"devDependencies": { "devDependencies": {

View File

@@ -21,7 +21,7 @@
"@kit/supabase": "workspace:*", "@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@supabase/supabase-js": "2.48.1", "@supabase/supabase-js": "2.48.1",
"next": "15.1.6", "next": "15.1.7",
"zod": "^3.24.1" "zod": "^3.24.1"
}, },
"typesVersions": { "typesVersions": {

View File

@@ -31,7 +31,7 @@
"@supabase/supabase-js": "2.48.1", "@supabase/supabase-js": "2.48.1",
"@tanstack/react-query": "5.66.0", "@tanstack/react-query": "5.66.0",
"@types/react": "19.0.8", "@types/react": "19.0.8",
"next": "15.1.6", "next": "15.1.7",
"react": "19.0.0", "react": "19.0.0",
"server-only": "^0.0.1", "server-only": "^0.0.1",
"zod": "^3.24.1" "zod": "^3.24.1"

View File

@@ -9,7 +9,7 @@
"typecheck": "tsc --noEmit" "typecheck": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^4.0.0",
"@radix-ui/react-accordion": "1.2.3", "@radix-ui/react-accordion": "1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.6", "@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3", "@radix-ui/react-avatar": "^1.1.3",
@@ -50,14 +50,14 @@
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"eslint": "^9.20.0", "eslint": "^9.20.0",
"next": "15.1.6", "next": "15.1.7",
"next-themes": "0.4.4", "next-themes": "0.4.4",
"prettier": "^3.5.0", "prettier": "^3.5.0",
"react-day-picker": "^8.10.1", "react-day-picker": "^8.10.1",
"react-hook-form": "^7.54.2", "react-hook-form": "^7.54.2",
"react-i18next": "^15.4.0", "react-i18next": "^15.4.0",
"sonner": "^1.7.4", "sonner": "^1.7.4",
"tailwindcss": "4.0.5", "tailwindcss": "4.0.6",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3", "typescript": "^5.7.3",
"zod": "^3.24.1" "zod": "^3.24.1"

1218
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -14,14 +14,14 @@
"format": "prettier --check \"**/*.{js,json}\"" "format": "prettier --check \"**/*.{js,json}\""
}, },
"dependencies": { "dependencies": {
"@next/eslint-plugin-next": "15.1.6", "@next/eslint-plugin-next": "15.1.7",
"@types/eslint": "9.6.1", "@types/eslint": "9.6.1",
"eslint-config-next": "15.1.6", "eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.0.1", "eslint-config-prettier": "^10.0.1",
"eslint-config-turbo": "^2.4.0", "eslint-config-turbo": "^2.4.1",
"eslint-plugin-react": "7.37.4", "eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-react-hooks": "^5.1.0",
"typescript-eslint": "8.23.0" "typescript-eslint": "8.24.0"
}, },
"devDependencies": { "devDependencies": {
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",