Dependencies: Updated packages, run linter autofix (#84)

This commit is contained in:
Giancarlo Buomprisco
2024-11-26 08:21:07 +01:00
committed by GitHub
parent 5cc936b982
commit 8e051664b8
27 changed files with 330 additions and 363 deletions

View File

@@ -13,7 +13,7 @@
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.49.0", "@playwright/test": "^1.49.0",
"@types/node": "^22.9.1", "@types/node": "^22.10.0",
"node-html-parser": "^6.1.13" "node-html-parser": "^6.1.13"
} }
} }

View File

@@ -48,7 +48,7 @@ export function TeamAccountNavigationMenu(props: {
</BorderedNavigationMenu> </BorderedNavigationMenu>
</div> </div>
<div className={'flex justify-end space-x-2.5 items-center'}> <div className={'flex items-center justify-end space-x-2.5'}>
<TeamAccountNotifications accountId={account.id} userId={user.id} /> <TeamAccountNotifications accountId={account.id} userId={user.id} />
<TeamAccountAccountsSelector <TeamAccountAccountsSelector
@@ -62,7 +62,11 @@ export function TeamAccountNavigationMenu(props: {
/> />
<div> <div>
<ProfileAccountDropdownContainer user={user} account={account} showProfileName={false} /> <ProfileAccountDropdownContainer
user={user}
account={account}
showProfileName={false}
/>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -19,8 +19,7 @@ const FeatureFlagsSchema = z.object({
}), }),
enableTeamAccounts: z.boolean({ enableTeamAccounts: z.boolean({
description: 'Enable team accounts.', description: 'Enable team accounts.',
required_error: required_error: 'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS',
'Provide the variable NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS',
}), }),
enableTeamCreation: z.boolean({ enableTeamCreation: z.boolean({
description: 'Enable team creation.', description: 'Enable team creation.',

View File

@@ -56,10 +56,10 @@
"@marsidev/react-turnstile": "^1.1.0", "@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@tanstack/react-table": "^8.20.5", "@tanstack/react-table": "^8.20.5",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"next": "15.0.3", "next": "15.0.3",
"next-sitemap": "^4.2.3", "next-sitemap": "^4.2.3",
"next-themes": "0.4.3", "next-themes": "0.4.3",
@@ -79,11 +79,11 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@next/bundle-analyzer": "15.0.3", "@next/bundle-analyzer": "15.0.3",
"@types/mdx": "^2.0.13", "@types/mdx": "^2.0.13",
"@types/node": "^22.9.1", "@types/node": "^22.10.0",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"autoprefixer": "^10.4.20", "autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-a7bf2bd-20241110", "babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"dotenv-cli": "^7.4.4", "dotenv-cli": "^7.4.4",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"import-in-the-middle": "1.11.2", "import-in-the-middle": "1.11.2",
@@ -92,7 +92,7 @@
"require-in-the-middle": "7.4.0", "require-in-the-middle": "7.4.0",
"supabase": "^1.223.10", "supabase": "^1.223.10",
"tailwindcss": "3.4.15", "tailwindcss": "3.4.15",
"typescript": "^5.6.3" "typescript": "^5.7.2"
}, },
"eslintConfig": { "eslintConfig": {
"root": true, "root": true,

View File

@@ -46,10 +46,10 @@
}, },
"devDependencies": { "devDependencies": {
"@manypkg/cli": "^0.23.0", "@manypkg/cli": "^0.23.0",
"@turbo/gen": "^2.3.1", "@turbo/gen": "^2.3.2",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"turbo": "2.3.1", "turbo": "2.3.2",
"typescript": "^5.6.3" "typescript": "^5.7.2"
} }
} }

View File

@@ -17,7 +17,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tailwind-config": "workspace:*", "@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/node": "^22.9.1" "@types/node": "^22.10.0"
}, },
"eslintConfig": { "eslintConfig": {
"root": true, "root": true,

View File

@@ -30,7 +30,7 @@
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"next": "15.0.3", "next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",
"react-hook-form": "^7.53.2", "react-hook-form": "^7.53.2",

View File

@@ -19,7 +19,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/wordpress": "workspace:*", "@kit/wordpress": "workspace:*",
"@types/node": "^22.9.1" "@types/node": "^22.10.0"
}, },
"eslintConfig": { "eslintConfig": {
"root": true, "root": true,

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.9.1", "@types/node": "^22.10.0",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",
"zod": "^3.23.8" "zod": "^3.23.8"

View File

@@ -45,9 +45,9 @@ function getKeystaticGithubConfiguration() {
* This can be provided through the `NEXT_PUBLIC_KEYSTATIC_STORAGE_REPO` environment variable. The previous environment variable `KEYSTATIC_STORAGE_REPO` is deprecated. * This can be provided through the `NEXT_PUBLIC_KEYSTATIC_STORAGE_REPO` environment variable. The previous environment variable `KEYSTATIC_STORAGE_REPO` is deprecated.
*/ */
const repo = const repo =
process.env.NEXT_PUBLIC_KEYSTATIC_STORAGE_REPO ?? process.env.NEXT_PUBLIC_KEYSTATIC_STORAGE_REPO ??
/* @deprecated */ /* @deprecated */
process.env.KEYSTATIC_STORAGE_REPO; process.env.KEYSTATIC_STORAGE_REPO;
return z return z
.object({ .object({

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.9.1", "@types/node": "^22.10.0",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"wp-types": "^4.67.0" "wp-types": "^4.67.0"
}, },

View File

@@ -35,10 +35,10 @@
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"next": "15.0.3", "next": "15.0.3",
"next-themes": "0.4.3", "next-themes": "0.4.3",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",

View File

@@ -22,10 +22,10 @@
"@makerkit/data-loader-supabase-core": "^0.0.8", "@makerkit/data-loader-supabase-core": "^0.0.8",
"@makerkit/data-loader-supabase-nextjs": "^1.2.3", "@makerkit/data-loader-supabase-nextjs": "^1.2.3",
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@tanstack/react-table": "^8.20.5", "@tanstack/react-table": "^8.20.5",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"next": "15.0.3", "next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021", "react-dom": "19.0.0-rc-45804af1-20241021",

View File

@@ -29,9 +29,9 @@
"@marsidev/react-turnstile": "^1.1.0", "@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"next": "15.0.3", "next": "15.0.3",
"react-hook-form": "^7.53.2", "react-hook-form": "^7.53.2",
"react-i18next": "^15.1.1", "react-i18next": "^15.1.1",

View File

@@ -21,9 +21,9 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021", "react-dom": "19.0.0-rc-45804af1-20241021",
"react-i18next": "^15.1.1" "react-i18next": "^15.1.1"

View File

@@ -33,13 +33,13 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*", "@kit/ui": "workspace:*",
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@tanstack/react-table": "^8.20.5", "@tanstack/react-table": "^8.20.5",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.0",
"date-fns": "^4.1.0", "date-fns": "^4.1.0",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"next": "15.0.3", "next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021", "react-dom": "19.0.0-rc-45804af1-20241021",

View File

@@ -21,14 +21,14 @@
"@kit/shared": "workspace:*", "@kit/shared": "workspace:*",
"@kit/tailwind-config": "workspace:*", "@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"next": "15.0.3", "next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",
"react-dom": "19.0.0-rc-45804af1-20241021", "react-dom": "19.0.0-rc-45804af1-20241021",
"react-i18next": "^15.1.1" "react-i18next": "^15.1.1"
}, },
"dependencies": { "dependencies": {
"i18next": "23.16.8", "i18next": "24.0.2",
"i18next-browser-languagedetector": "8.0.0", "i18next-browser-languagedetector": "8.0.0",
"i18next-resources-to-backend": "^1.2.1" "i18next-resources-to-backend": "^1.2.1"
}, },

View File

@@ -19,7 +19,7 @@
"@kit/resend": "workspace:*", "@kit/resend": "workspace:*",
"@kit/tailwind-config": "workspace:*", "@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/node": "^22.9.1", "@types/node": "^22.10.0",
"zod": "^3.23.8" "zod": "^3.23.8"
}, },
"eslintConfig": { "eslintConfig": {

View File

@@ -18,7 +18,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tailwind-config": "workspace:*", "@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@types/node": "^22.9.1", "@types/node": "^22.10.0",
"zod": "^3.23.8" "zod": "^3.23.8"
}, },
"eslintConfig": { "eslintConfig": {

View File

@@ -30,7 +30,7 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@supabase/ssr": "^0.5.2", "@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.46.1", "@supabase/supabase-js": "^2.46.1",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"next": "15.0.3", "next": "15.0.3",
"react": "19.0.0-rc-45804af1-20241021", "react": "19.0.0-rc-45804af1-20241021",

View File

@@ -32,7 +32,7 @@
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cmdk": "1.0.4", "cmdk": "1.0.4",
"input-otp": "1.4.1", "input-otp": "1.4.1",
"lucide-react": "^0.460.0", "lucide-react": "^0.461.0",
"react-top-loading-bar": "2.3.1", "react-top-loading-bar": "2.3.1",
"recharts": "2.13.3", "recharts": "2.13.3",
"tailwind-merge": "^2.5.4" "tailwind-merge": "^2.5.4"
@@ -43,7 +43,7 @@
"@kit/tailwind-config": "workspace:*", "@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@tanstack/react-query": "5.61.0", "@tanstack/react-query": "5.61.3",
"@tanstack/react-table": "^8.20.5", "@tanstack/react-table": "^8.20.5",
"@types/react": "npm:types-react@19.0.0-rc.1", "@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
@@ -59,7 +59,7 @@
"sonner": "^1.7.0", "sonner": "^1.7.0",
"tailwindcss": "3.4.15", "tailwindcss": "3.4.15",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.3", "typescript": "^5.7.2",
"zod": "^3.23.8" "zod": "^3.23.8"
}, },
"eslintConfig": { "eslintConfig": {

View File

@@ -113,9 +113,7 @@ export function PageBody(
} }
export function PageNavigation(props: React.PropsWithChildren) { export function PageNavigation(props: React.PropsWithChildren) {
return ( return <div className={'flex-1 bg-inherit'}>{props.children}</div>;
<div className={'flex-1 bg-inherit'}>{props.children}</div>
);
} }
export function PageDescription(props: React.PropsWithChildren) { export function PageDescription(props: React.PropsWithChildren) {

594
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -15,10 +15,10 @@
"dependencies": { "dependencies": {
"@next/eslint-plugin-next": "15.0.3", "@next/eslint-plugin-next": "15.0.3",
"@types/eslint": "^8.56.10", "@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^8.15.0", "@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.14.0", "@typescript-eslint/parser": "^8.16.0",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.3.1", "eslint-config-turbo": "^2.3.2",
"eslint-plugin-import": "^2.31.0", "eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "7.37.2", "eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "^5.0.0" "eslint-plugin-react-hooks": "^5.0.0"
@@ -27,7 +27,7 @@
"@kit/prettier-config": "workspace:*", "@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"typescript": "^5.6.3" "typescript": "^5.7.2"
}, },
"eslintConfig": { "eslintConfig": {
"root": true, "root": true,

View File

@@ -27,7 +27,7 @@ const config = {
importOrderSortSpecifiers: true, importOrderSortSpecifiers: true,
plugins: [ plugins: [
'@trivago/prettier-plugin-sort-imports', '@trivago/prettier-plugin-sort-imports',
'prettier-plugin-tailwindcss' 'prettier-plugin-tailwindcss',
], ],
}; };

View File

@@ -15,7 +15,7 @@
}, },
"devDependencies": { "devDependencies": {
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"typescript": "^5.6.3" "typescript": "^5.7.2"
}, },
"prettier": "./index.mjs" "prettier": "./index.mjs"
} }

View File

@@ -25,7 +25,7 @@
"@kit/tsconfig": "workspace:*", "@kit/tsconfig": "workspace:*",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"typescript": "^5.6.3" "typescript": "^5.7.2"
}, },
"eslintConfig": { "eslintConfig": {
"root": true, "root": true,