Updated dependencies, reintroduced bundle analyzer (#159)
This commit is contained in:
committed by
GitHub
parent
f5a961f155
commit
f2c74bd11c
@@ -13,7 +13,7 @@
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.50.1",
|
||||
"@types/node": "^22.13.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"node-html-parser": "^7.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import withBundleAnalyzer from '@next/bundle-analyzer';
|
||||
|
||||
const IS_PRODUCTION = process.env.NODE_ENV === 'production';
|
||||
const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL;
|
||||
const ENABLE_REACT_COMPILER = process.env.ENABLE_REACT_COMPILER === 'true';
|
||||
@@ -67,7 +69,9 @@ const config = {
|
||||
typescript: { ignoreBuildErrors: true },
|
||||
};
|
||||
|
||||
export default config;
|
||||
export default withBundleAnalyzer({
|
||||
enabled: process.env.ANALYZE === 'true',
|
||||
})(config);
|
||||
|
||||
function getRemotePatterns() {
|
||||
/** @type {import('next').NextConfig['remotePatterns']} */
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@edge-csrf/nextjs": "2.5.3-cloudflare-rc1",
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@kit/accounts": "workspace:*",
|
||||
"@kit/admin": "workspace:*",
|
||||
"@kit/analytics": "workspace:*",
|
||||
@@ -61,7 +61,7 @@
|
||||
"@tanstack/react-table": "^8.20.6",
|
||||
"date-fns": "^4.1.0",
|
||||
"lucide-react": "^0.475.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"next-sitemap": "^4.2.3",
|
||||
"next-themes": "0.4.4",
|
||||
"react": "19.0.0",
|
||||
@@ -77,10 +77,10 @@
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@next/bundle-analyzer": "15.1.6",
|
||||
"@tailwindcss/postcss": "^4.0.5",
|
||||
"@next/bundle-analyzer": "15.1.7",
|
||||
"@tailwindcss/postcss": "^4.0.6",
|
||||
"@types/mdx": "^2.0.13",
|
||||
"@types/node": "^22.13.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"@types/react": "19.0.8",
|
||||
"@types/react-dom": "19.0.3",
|
||||
"autoprefixer": "^10.4.20",
|
||||
@@ -88,8 +88,8 @@
|
||||
"dotenv-cli": "^8.0.0",
|
||||
"pino-pretty": "^13.0.0",
|
||||
"prettier": "^3.5.0",
|
||||
"supabase": "^2.9.6",
|
||||
"tailwindcss": "4.0.5",
|
||||
"supabase": "^2.12.0",
|
||||
"tailwindcss": "4.0.6",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"typescript": "^5.7.3"
|
||||
},
|
||||
|
||||
@@ -43,10 +43,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@manypkg/cli": "^0.23.0",
|
||||
"@turbo/gen": "^2.4.0",
|
||||
"@turbo/gen": "^2.4.1",
|
||||
"cross-env": "^7.0.3",
|
||||
"prettier": "^3.5.0",
|
||||
"turbo": "2.4.0",
|
||||
"turbo": "2.4.1",
|
||||
"typescript": "^5.7.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@types/node": "^22.13.0"
|
||||
"@types/node": "^22.13.1"
|
||||
},
|
||||
"typesVersions": {
|
||||
"*": {
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"./marketing": "./src/components/marketing.tsx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@kit/billing": "workspace:*",
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
"@kit/lemon-squeezy": "workspace:*",
|
||||
@@ -30,7 +30,7 @@
|
||||
"@types/react": "19.0.8",
|
||||
"date-fns": "^4.1.0",
|
||||
"lucide-react": "^0.475.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react": "19.0.0",
|
||||
"react-hook-form": "^7.54.2",
|
||||
"react-i18next": "^15.4.0",
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/ui": "workspace:*",
|
||||
"@types/react": "19.0.8",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react": "19.0.0",
|
||||
"zod": "^3.24.1"
|
||||
},
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
"@kit/ui": "workspace:*",
|
||||
"@types/react": "19.0.8",
|
||||
"date-fns": "^4.1.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react": "19.0.0",
|
||||
"zod": "^3.24.1"
|
||||
},
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"@kit/shared": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/wordpress": "workspace:*",
|
||||
"@types/node": "^22.13.0"
|
||||
"@types/node": "^22.13.1"
|
||||
},
|
||||
"typesVersions": {
|
||||
"*": {
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/ui": "workspace:*",
|
||||
"@types/node": "^22.13.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"@types/react": "19.0.8",
|
||||
"react": "19.0.0",
|
||||
"zod": "^3.24.1"
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@kit/ui": "workspace:*",
|
||||
"@types/node": "^22.13.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"@types/react": "19.0.8",
|
||||
"wp-types": "^4.67.0"
|
||||
},
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
".": "./src/index.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@react-email/components": "0.0.32"
|
||||
"@react-email/components": "0.0.33"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"nanoid": "^5.0.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@kit/billing-gateway": "workspace:*",
|
||||
"@kit/email-templates": "workspace:*",
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
@@ -38,7 +38,7 @@
|
||||
"@types/react": "19.0.8",
|
||||
"@types/react-dom": "19.0.3",
|
||||
"lucide-react": "^0.475.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"next-themes": "0.4.4",
|
||||
"react": "19.0.0",
|
||||
"react-dom": "19.0.0",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
},
|
||||
"prettier": "@kit/prettier-config",
|
||||
"devDependencies": {
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
"@kit/next": "workspace:*",
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
@@ -25,7 +25,7 @@
|
||||
"@tanstack/react-table": "^8.20.6",
|
||||
"@types/react": "19.0.8",
|
||||
"lucide-react": "^0.475.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react": "19.0.0",
|
||||
"react-dom": "19.0.0",
|
||||
"react-hook-form": "^7.54.2",
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
"./resend-email-link": "./src/components/resend-auth-link-form.tsx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
"@kit/shared": "workspace:*",
|
||||
@@ -32,7 +32,7 @@
|
||||
"@tanstack/react-query": "5.66.0",
|
||||
"@types/react": "19.0.8",
|
||||
"lucide-react": "^0.475.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react-hook-form": "^7.54.2",
|
||||
"react-i18next": "^15.4.0",
|
||||
"sonner": "^1.7.4",
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"nanoid": "^5.0.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@kit/accounts": "workspace:*",
|
||||
"@kit/billing-gateway": "workspace:*",
|
||||
"@kit/email-templates": "workspace:*",
|
||||
@@ -39,7 +39,7 @@
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"date-fns": "^4.1.0",
|
||||
"lucide-react": "^0.475.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react": "19.0.0",
|
||||
"react-dom": "19.0.0",
|
||||
"react-hook-form": "^7.54.2",
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
"@kit/shared": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@tanstack/react-query": "5.66.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react": "19.0.0",
|
||||
"react-dom": "19.0.0",
|
||||
"react-i18next": "^15.4.0"
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"@kit/resend": "workspace:*",
|
||||
"@kit/shared": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@types/node": "^22.13.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"zod": "^3.24.1"
|
||||
},
|
||||
"typesVersions": {
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
"@kit/mailers-shared": "workspace:*",
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@types/node": "^22.13.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"zod": "^3.24.1"
|
||||
},
|
||||
"typesVersions": {
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"./config/server": "./src/sentry.client.server.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sentry/nextjs": "^8.54.0",
|
||||
"@sentry/nextjs": "^9.0.0",
|
||||
"import-in-the-middle": "1.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
"@kit/supabase": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@supabase/supabase-js": "2.48.1",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"zod": "^3.24.1"
|
||||
},
|
||||
"typesVersions": {
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
"@supabase/supabase-js": "2.48.1",
|
||||
"@tanstack/react-query": "5.66.0",
|
||||
"@types/react": "19.0.8",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"react": "19.0.0",
|
||||
"server-only": "^0.0.1",
|
||||
"zod": "^3.24.1"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@radix-ui/react-accordion": "1.2.3",
|
||||
"@radix-ui/react-alert-dialog": "^1.1.6",
|
||||
"@radix-ui/react-avatar": "^1.1.3",
|
||||
@@ -50,14 +50,14 @@
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"date-fns": "^4.1.0",
|
||||
"eslint": "^9.20.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"next-themes": "0.4.4",
|
||||
"prettier": "^3.5.0",
|
||||
"react-day-picker": "^8.10.1",
|
||||
"react-hook-form": "^7.54.2",
|
||||
"react-i18next": "^15.4.0",
|
||||
"sonner": "^1.7.4",
|
||||
"tailwindcss": "4.0.5",
|
||||
"tailwindcss": "4.0.6",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"typescript": "^5.7.3",
|
||||
"zod": "^3.24.1"
|
||||
|
||||
1218
pnpm-lock.yaml
generated
1218
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -14,14 +14,14 @@
|
||||
"format": "prettier --check \"**/*.{js,json}\""
|
||||
},
|
||||
"dependencies": {
|
||||
"@next/eslint-plugin-next": "15.1.6",
|
||||
"@next/eslint-plugin-next": "15.1.7",
|
||||
"@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-turbo": "^2.4.0",
|
||||
"eslint-config-turbo": "^2.4.1",
|
||||
"eslint-plugin-react": "7.37.4",
|
||||
"eslint-plugin-react-hooks": "^5.1.0",
|
||||
"typescript-eslint": "8.23.0"
|
||||
"typescript-eslint": "8.24.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
|
||||
Reference in New Issue
Block a user