Update dependencies and remove unused packages
This commit updates the versions of some dependencies, removes a few unused packages, and corrects the locations of some of the dependencies. Specific changes include version updates for '@tanstack/react-query-next-experimental', 'lucide-react', and 'supabase'. Furthermore, several unnecessary '@tanstack/react-table', 'next', 'tailwind-merge', and 'zod' dependencies were removed from various packages. The exact details of these changes can be obtained by comparing the changes in the 'pnpm-lock.yaml' file.
This commit is contained in:
@@ -18,8 +18,8 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"@tanstack/react-table": "^8.16.0",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"tailwind-merge": "^2.3.0",
|
"tailwind-merge": "^2.3.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,18 +28,7 @@ export async function POST(request: Request) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await service.handleWebhookEvent(request, {
|
await service.handleWebhookEvent(request);
|
||||||
onEvent(event: string, data: unknown) {
|
|
||||||
logger.info(
|
|
||||||
{
|
|
||||||
...ctx,
|
|
||||||
event,
|
|
||||||
data,
|
|
||||||
},
|
|
||||||
`Received billing event`,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
logger.info(ctx, `Successfully processed billing webhook`);
|
logger.info(ctx, `Successfully processed billing webhook`);
|
||||||
|
|
||||||
|
|||||||
@@ -54,24 +54,22 @@
|
|||||||
"@marsidev/react-turnstile": "^0.5.4",
|
"@marsidev/react-turnstile": "^0.5.4",
|
||||||
"@radix-ui/react-icons": "^1.3.0",
|
"@radix-ui/react-icons": "^1.3.0",
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"@tanstack/react-query": "5.29.2",
|
"@tanstack/react-query": "5.32.0",
|
||||||
"@tanstack/react-query-next-experimental": "^5.29.2",
|
"@tanstack/react-query-next-experimental": "^5.32.0",
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"@tanstack/react-table": "^8.16.0",
|
||||||
"date-fns": "^3.6.0",
|
"date-fns": "^3.6.0",
|
||||||
"i18next": "^23.11.2",
|
"lucide-react": "^0.373.0",
|
||||||
"i18next-resources-to-backend": "^1.2.1",
|
"next": "14.2.2",
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"next-sitemap": "^4.2.3",
|
"next-sitemap": "^4.2.3",
|
||||||
"next-themes": "0.3.0",
|
"next-themes": "0.3.0",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
"react-hook-form": "^7.51.3",
|
"react-hook-form": "^7.51.3",
|
||||||
"react-i18next": "^14.1.0",
|
"react-i18next": "^14.1.1",
|
||||||
"recharts": "^2.12.6",
|
"recharts": "^2.12.6",
|
||||||
"sonner": "^1.4.41",
|
"sonner": "^1.4.41",
|
||||||
"tailwind-merge": "^2.3.0",
|
"tailwind-merge": "^2.3.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:^",
|
"@kit/eslint-config": "workspace:^",
|
||||||
@@ -87,7 +85,7 @@
|
|||||||
"dotenv-cli": "^7.4.1",
|
"dotenv-cli": "^7.4.1",
|
||||||
"eslint": "^8.57.0",
|
"eslint": "^8.57.0",
|
||||||
"prettier": "^3.2.5",
|
"prettier": "^3.2.5",
|
||||||
"supabase": "^1.162.4",
|
"supabase": "^1.163.2",
|
||||||
"tailwindcss": "3.4.3",
|
"tailwindcss": "3.4.3",
|
||||||
"typescript": "^5.4.5"
|
"typescript": "^5.4.5"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -15,12 +15,6 @@
|
|||||||
"./schema": "./src/schema/index.ts",
|
"./schema": "./src/schema/index.ts",
|
||||||
"./types": "./src/types/index.ts"
|
"./types": "./src/types/index.ts"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/supabase": "0.1.0",
|
|
||||||
"@kit/ui": "0.1.0",
|
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
"@kit/prettier-config": "workspace:*",
|
"@kit/prettier-config": "workspace:*",
|
||||||
@@ -28,8 +22,7 @@
|
|||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@kit/ui": "workspace:*",
|
"@kit/ui": "workspace:*",
|
||||||
"lucide-react": "^0.372.0",
|
"zod": "^3.23.4"
|
||||||
"zod": "^3.23.0"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
@@ -44,10 +37,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,22 +15,6 @@
|
|||||||
"./checkout": "./src/components/embedded-checkout.tsx",
|
"./checkout": "./src/components/embedded-checkout.tsx",
|
||||||
"./marketing": "./src/components/marketing.tsx"
|
"./marketing": "./src/components/marketing.tsx"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@hookform/resolvers": "3.3.4",
|
|
||||||
"@kit/billing": "0.1.0",
|
|
||||||
"@kit/shared": "^0.1.0",
|
|
||||||
"@kit/stripe": "0.1.0",
|
|
||||||
"@kit/supabase": "^0.1.0",
|
|
||||||
"@kit/ui": "0.1.0",
|
|
||||||
"@supabase/supabase-js": "^2.42.0",
|
|
||||||
"date-fns": "^3.6.0",
|
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"next": "^14.1.4",
|
|
||||||
"react": "^18.2.0",
|
|
||||||
"react-hook-form": "^7.51.2",
|
|
||||||
"react-i18next": "^14.1.0",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@hookform/resolvers": "^3.3.4",
|
"@hookform/resolvers": "^3.3.4",
|
||||||
"@kit/billing": "workspace:^",
|
"@kit/billing": "workspace:^",
|
||||||
@@ -46,12 +30,12 @@
|
|||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"date-fns": "^3.6.0",
|
"date-fns": "^3.6.0",
|
||||||
"lucide-react": "^0.372.0",
|
"lucide-react": "^0.373.0",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-hook-form": "^7.51.3",
|
"react-hook-form": "^7.51.3",
|
||||||
"react-i18next": "^14.1.0",
|
"react-i18next": "^14.1.1",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
@@ -66,9 +50,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,19 +13,8 @@
|
|||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./components": "./src/components/index.ts"
|
"./components": "./src/components/index.ts"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/billing": "0.1.0",
|
|
||||||
"@kit/shared": "0.1.0",
|
|
||||||
"@kit/supabase": "0.1.0",
|
|
||||||
"@kit/ui": "0.1.0",
|
|
||||||
"react": "^18.2.0",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lemonsqueezy/lemonsqueezy.js": "2.2.0",
|
"@lemonsqueezy/lemonsqueezy.js": "2.2.0"
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/billing": "workspace:^",
|
"@kit/billing": "workspace:^",
|
||||||
@@ -37,8 +26,9 @@
|
|||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@kit/ui": "workspace:^",
|
"@kit/ui": "workspace:^",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
|
"next": "14.2.2",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
@@ -14,22 +14,10 @@
|
|||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
"./components": "./src/components/index.ts"
|
"./components": "./src/components/index.ts"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/billing": "0.1.0",
|
|
||||||
"@kit/shared": "0.1.0",
|
|
||||||
"@kit/supabase": "0.1.0",
|
|
||||||
"@kit/ui": "0.1.0",
|
|
||||||
"date-fns": "^3.6.0",
|
|
||||||
"react": "^18.2.0",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@stripe/react-stripe-js": "^2.7.0",
|
"@stripe/react-stripe-js": "^2.7.0",
|
||||||
"@stripe/stripe-js": "^3.3.0",
|
"@stripe/stripe-js": "^3.3.0",
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"stripe": "^15.3.0"
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"stripe": "^15.3.0",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/billing": "workspace:^",
|
"@kit/billing": "workspace:^",
|
||||||
@@ -42,8 +30,9 @@
|
|||||||
"@kit/ui": "workspace:^",
|
"@kit/ui": "workspace:^",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"date-fns": "^3.6.0",
|
"date-fns": "^3.6.0",
|
||||||
|
"next": "14.2.2",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
@@ -31,11 +31,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -16,15 +16,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@keystatic/core": "0.5.11",
|
"@keystatic/core": "0.5.11",
|
||||||
"@keystatic/next": "5.0.0",
|
"@keystatic/next": "5.0.0"
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/cms": "workspace:^",
|
|
||||||
"@kit/ui": "workspace:^",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/cms": "workspace:^",
|
"@kit/cms": "workspace:^",
|
||||||
@@ -33,7 +25,7 @@
|
|||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@kit/ui": "workspace:^",
|
"@kit/ui": "workspace:^",
|
||||||
"@types/node": "^20.12.7",
|
"@types/node": "^20.12.7",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
@@ -13,10 +13,6 @@
|
|||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts"
|
".": "./src/index.ts"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/cms": "workspace:^",
|
|
||||||
"@kit/ui": "workspace:^"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/cms": "workspace:^",
|
"@kit/cms": "workspace:^",
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
@@ -39,11 +35,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -12,12 +12,6 @@
|
|||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts"
|
".": "./src/index.ts"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/billing-gateway": "workspace:^",
|
|
||||||
"@kit/shared": "^0.1.0",
|
|
||||||
"@kit/supabase": "^0.1.0",
|
|
||||||
"@kit/team-accounts": "workspace:^"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/billing": "workspace:^",
|
"@kit/billing": "workspace:^",
|
||||||
"@kit/billing-gateway": "workspace:^",
|
"@kit/billing-gateway": "workspace:^",
|
||||||
@@ -29,10 +23,8 @@
|
|||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/team-accounts": "workspace:^",
|
"@kit/team-accounts": "workspace:^",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@kit/ui": "workspace:^",
|
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"lucide-react": "^0.372.0",
|
"zod": "^3.23.4"
|
||||||
"zod": "^3.23.0"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
@@ -47,10 +39,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,11 +13,7 @@
|
|||||||
".": "./src/index.ts"
|
".": "./src/index.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@react-email/components": "0.0.16",
|
"@react-email/components": "0.0.16"
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
|
|||||||
@@ -16,9 +16,7 @@
|
|||||||
"./api": "./src/server/api.ts"
|
"./api": "./src/server/api.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"nanoid": "^5.0.7"
|
||||||
"nanoid": "^5.0.7",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@hookform/resolvers": "^3.3.4",
|
"@hookform/resolvers": "^3.3.4",
|
||||||
@@ -35,39 +33,17 @@
|
|||||||
"@kit/ui": "workspace:^",
|
"@kit/ui": "workspace:^",
|
||||||
"@radix-ui/react-icons": "^1.3.0",
|
"@radix-ui/react-icons": "^1.3.0",
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"@tanstack/react-query": "5.29.2",
|
"@tanstack/react-query": "5.32.0",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"@types/react-dom": "^18.2.25",
|
"@types/react-dom": "^18.2.25",
|
||||||
"lucide-react": "^0.372.0",
|
"next": "14.2.2",
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"next-themes": "0.3.0",
|
"next-themes": "0.3.0",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
"react-hook-form": "^7.51.3",
|
"react-hook-form": "^7.51.3",
|
||||||
"react-i18next": "^14.1.0",
|
"react-i18next": "^14.1.1",
|
||||||
"sonner": "^1.4.41",
|
"sonner": "^1.4.41",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@hookform/resolvers": "^3.3.4",
|
|
||||||
"@kit/billing-gateway": "workspace:^",
|
|
||||||
"@kit/email-templates": "workspace:^",
|
|
||||||
"@kit/mailers": "workspace:^",
|
|
||||||
"@kit/shared": "0.1.0",
|
|
||||||
"@kit/supabase": "0.1.0",
|
|
||||||
"@kit/ui": "workspace:^",
|
|
||||||
"@radix-ui/react-icons": "^1.3.0",
|
|
||||||
"@supabase/supabase-js": "^2.42.0",
|
|
||||||
"@tanstack/react-query": "5.29.2",
|
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"next": "^14.1.4",
|
|
||||||
"next-themes": "0.3.0",
|
|
||||||
"react": "^18.2.0",
|
|
||||||
"react-dom": "^18.2.0",
|
|
||||||
"react-hook-form": "^7.51.2",
|
|
||||||
"react-i18next": "^14.1.0",
|
|
||||||
"sonner": "^1.4.41",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
},
|
||||||
"prettier": "@kit/prettier-config",
|
"prettier": "@kit/prettier-config",
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
|
|||||||
@@ -9,22 +9,6 @@
|
|||||||
"typecheck": "tsc --noEmit"
|
"typecheck": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
"prettier": "@kit/prettier-config",
|
"prettier": "@kit/prettier-config",
|
||||||
"peerDependencies": {
|
|
||||||
"@hookform/resolvers": "^3.3.4",
|
|
||||||
"@kit/next": "workspace:*",
|
|
||||||
"@kit/supabase": "workspace:*",
|
|
||||||
"@kit/ui": "workspace:*",
|
|
||||||
"@makerkit/data-loader-supabase-core": "^0.0.7",
|
|
||||||
"@makerkit/data-loader-supabase-nextjs": "^1.0.0",
|
|
||||||
"@tanstack/react-query": "^5.29.2",
|
|
||||||
"@tanstack/react-table": "^8.15.3",
|
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"next": "^14.1.4",
|
|
||||||
"react": "^18.2.0",
|
|
||||||
"react-dom": "^18.2.0",
|
|
||||||
"react-hook-form": "^7.51.2",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@hookform/resolvers": "^3.3.4",
|
"@hookform/resolvers": "^3.3.4",
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
@@ -37,15 +21,15 @@
|
|||||||
"@makerkit/data-loader-supabase-core": "^0.0.7",
|
"@makerkit/data-loader-supabase-core": "^0.0.7",
|
||||||
"@makerkit/data-loader-supabase-nextjs": "^1.1.0",
|
"@makerkit/data-loader-supabase-nextjs": "^1.1.0",
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"@tanstack/react-query": "5.29.2",
|
"@tanstack/react-query": "5.32.0",
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"@tanstack/react-table": "^8.16.0",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"lucide-react": "^0.372.0",
|
"lucide-react": "^0.373.0",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
"react-hook-form": "^7.51.3",
|
"react-hook-form": "^7.51.3",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./src/index.ts",
|
".": "./src/index.ts",
|
||||||
@@ -64,8 +48,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,30 +29,14 @@
|
|||||||
"@marsidev/react-turnstile": "^0.5.4",
|
"@marsidev/react-turnstile": "^0.5.4",
|
||||||
"@radix-ui/react-icons": "^1.3.0",
|
"@radix-ui/react-icons": "^1.3.0",
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"@tanstack/react-query": "5.29.2",
|
"@tanstack/react-query": "5.32.0",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"lucide-react": "^0.372.0",
|
"lucide-react": "^0.373.0",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"react-hook-form": "^7.51.3",
|
"react-hook-form": "^7.51.3",
|
||||||
"react-i18next": "^14.1.0",
|
"react-i18next": "^14.1.1",
|
||||||
"sonner": "^1.4.41",
|
"sonner": "^1.4.41",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@hookform/resolvers": "^3.3.4",
|
|
||||||
"@kit/shared": "workspace:*",
|
|
||||||
"@kit/supabase": "workspace:*",
|
|
||||||
"@kit/ui": "workspace:*",
|
|
||||||
"@marsidev/react-turnstile": "^0.5.4",
|
|
||||||
"@radix-ui/react-icons": "^1.3.0",
|
|
||||||
"@supabase/supabase-js": "^2.42.0",
|
|
||||||
"@tanstack/react-query": "5.29.2",
|
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"next": "^14.1.4",
|
|
||||||
"react-hook-form": "^7.51.2",
|
|
||||||
"react-i18next": "^14.1.0",
|
|
||||||
"sonner": "^1.4.41",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
},
|
||||||
"prettier": "@kit/prettier-config",
|
"prettier": "@kit/prettier-config",
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
@@ -68,9 +52,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,8 +14,7 @@
|
|||||||
"./webhooks": "./src/server/services/webhooks/index.ts"
|
"./webhooks": "./src/server/services/webhooks/index.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"nanoid": "^5.0.7",
|
"nanoid": "^5.0.7"
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@hookform/resolvers": "^3.3.4",
|
"@hookform/resolvers": "^3.3.4",
|
||||||
@@ -32,37 +31,19 @@
|
|||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@kit/ui": "workspace:^",
|
"@kit/ui": "workspace:^",
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"@tanstack/react-query": "5.29.2",
|
"@tanstack/react-query": "5.32.0",
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"@tanstack/react-table": "^8.16.0",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"@types/react-dom": "^18.2.25",
|
"@types/react-dom": "^18.2.25",
|
||||||
"class-variance-authority": "^0.7.0",
|
"class-variance-authority": "^0.7.0",
|
||||||
"date-fns": "^3.6.0",
|
"date-fns": "^3.6.0",
|
||||||
"lucide-react": "^0.372.0",
|
"next": "14.2.2",
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
"react-hook-form": "^7.51.3",
|
"react-hook-form": "^7.51.3",
|
||||||
"react-i18next": "^14.1.0",
|
"react-i18next": "^14.1.1",
|
||||||
"sonner": "^1.4.41",
|
"sonner": "^1.4.41",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@hookform/resolvers": "^3.3.4",
|
|
||||||
"@kit/accounts": "0.1.0",
|
|
||||||
"@kit/email-templates": "0.1.0",
|
|
||||||
"@kit/mailers": "0.1.0",
|
|
||||||
"@kit/shared": "0.1.0",
|
|
||||||
"@kit/supabase": "0.1.0",
|
|
||||||
"@kit/ui": "workspace:^",
|
|
||||||
"@supabase/supabase-js": "^2.42.0",
|
|
||||||
"@tanstack/react-query": "5.29.2",
|
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"next": "^14.1.4",
|
|
||||||
"react": "^18.2.0",
|
|
||||||
"react-hook-form": "^7.51.2",
|
|
||||||
"react-i18next": "^14.1.0",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
},
|
||||||
"prettier": "@kit/prettier-config",
|
"prettier": "@kit/prettier-config",
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
|
|||||||
@@ -21,18 +21,13 @@
|
|||||||
"@kit/shared": "workspace:^",
|
"@kit/shared": "workspace:^",
|
||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@tanstack/react-query": "5.29.2",
|
"@tanstack/react-query": "5.32.0",
|
||||||
|
"react-i18next": "^14.1.1"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
"i18next": "^23.11.2",
|
"i18next": "^23.11.2",
|
||||||
"i18next-browser-languagedetector": "7.2.1",
|
"i18next-browser-languagedetector": "7.2.1",
|
||||||
"i18next-resources-to-backend": "^1.2.1",
|
"i18next-resources-to-backend": "^1.2.1"
|
||||||
"react-i18next": "^14.1.0"
|
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/shared": "^0.1.0",
|
|
||||||
"i18next": "^23.10.1",
|
|
||||||
"i18next-browser-languagedetector": "7.2.1",
|
|
||||||
"i18next-resources-to-backend": "^1.2.0",
|
|
||||||
"react-i18next": "^14.1.0"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
@@ -47,11 +42,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,10 +13,7 @@
|
|||||||
".": "./src/index.ts"
|
".": "./src/index.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"nodemailer": "^6.9.13",
|
"nodemailer": "^6.9.13",
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"vercel-email": "0.0.6"
|
"vercel-email": "0.0.6"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -25,7 +22,7 @@
|
|||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@types/nodemailer": "6.4.14",
|
"@types/nodemailer": "6.4.14",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
@@ -27,9 +27,6 @@
|
|||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"react": "18.2.0"
|
"react": "18.2.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"react": "^18.2.0"
|
|
||||||
},
|
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
"extends": [
|
"extends": [
|
||||||
@@ -43,11 +40,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,11 +18,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@baselime/node-opentelemetry": "^0.5.8",
|
"@baselime/node-opentelemetry": "^0.5.8",
|
||||||
"@baselime/react-rum": "^0.2.9",
|
"@baselime/react-rum": "^0.2.9",
|
||||||
"@kit/monitoring-core": "workspace:*",
|
"@kit/monitoring-core": "workspace:*"
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
@@ -30,10 +26,8 @@
|
|||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"react": "18.2.0"
|
"react": "18.2.0",
|
||||||
},
|
"zod": "^3.23.4"
|
||||||
"peerDependencies": {
|
|
||||||
"react": "18.2.0"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
@@ -21,9 +21,6 @@
|
|||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"react": "18.2.0"
|
"react": "18.2.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"react": "^18.2.0"
|
|
||||||
},
|
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
"extends": [
|
"extends": [
|
||||||
|
|||||||
@@ -19,28 +19,21 @@
|
|||||||
"./config/edge": "./src/config/sentry.server.edge.ts"
|
"./config/edge": "./src/config/sentry.server.edge.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kit/monitoring-core": "workspace:*",
|
|
||||||
"@opentelemetry/resources": "1.23.0",
|
"@opentelemetry/resources": "1.23.0",
|
||||||
"@opentelemetry/sdk-node": "0.50.0",
|
"@opentelemetry/sdk-node": "0.50.0",
|
||||||
"@opentelemetry/semantic-conventions": "^1.23.0",
|
"@opentelemetry/semantic-conventions": "^1.23.0",
|
||||||
"@sentry/nextjs": "^7.111.0",
|
"@sentry/nextjs": "^7.112.2",
|
||||||
"@sentry/opentelemetry-node": "^7.111.0",
|
"@sentry/opentelemetry-node": "^7.112.2"
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
|
"@kit/monitoring-core": "workspace:*",
|
||||||
"@kit/prettier-config": "workspace:*",
|
"@kit/prettier-config": "workspace:*",
|
||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"react": "18.2.0"
|
"react": "18.2.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"react": "18.2.0"
|
|
||||||
},
|
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
"extends": [
|
"extends": [
|
||||||
|
|||||||
@@ -13,13 +13,6 @@
|
|||||||
"./actions": "./src/actions/index.ts",
|
"./actions": "./src/actions/index.ts",
|
||||||
"./routes": "./src/routes/index.ts"
|
"./routes": "./src/routes/index.ts"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@kit/auth": "workspace:*",
|
|
||||||
"@kit/supabase": "workspace:*",
|
|
||||||
"@supabase/supabase-js": "^2.42.0",
|
|
||||||
"next": "^14.1.4",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/auth": "workspace:^",
|
"@kit/auth": "workspace:^",
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
@@ -28,8 +21,8 @@
|
|||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*",
|
"@kit/tsconfig": "workspace:*",
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
@@ -44,9 +37,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,18 +14,15 @@
|
|||||||
"./utils": "./src/utils.ts",
|
"./utils": "./src/utils.ts",
|
||||||
"./hooks": "./src/hooks/index.ts"
|
"./hooks": "./src/hooks/index.ts"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"pino": "^8.20.0",
|
|
||||||
"tailwind-merge": "^2.3.0",
|
|
||||||
"zod": "^3.23.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
"@kit/prettier-config": "workspace:*",
|
"@kit/prettier-config": "workspace:*",
|
||||||
"@kit/tailwind-config": "workspace:*",
|
"@kit/tailwind-config": "workspace:*",
|
||||||
"@kit/tsconfig": "workspace:*"
|
"@kit/tsconfig": "workspace:*",
|
||||||
|
"@tanstack/react-table": "^8.16.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"pino": "^8.20.0"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
@@ -28,19 +28,11 @@
|
|||||||
"@supabase/gotrue-js": "2.62.2",
|
"@supabase/gotrue-js": "2.62.2",
|
||||||
"@supabase/ssr": "^0.3.0",
|
"@supabase/ssr": "^0.3.0",
|
||||||
"@supabase/supabase-js": "^2.42.5",
|
"@supabase/supabase-js": "^2.42.5",
|
||||||
"@tanstack/react-query": "5.29.2",
|
"@tanstack/react-query": "5.32.0",
|
||||||
"@types/react": "^18.2.79",
|
"@types/react": "^18.2.79",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@supabase/ssr": "^0.3.0",
|
|
||||||
"@supabase/supabase-js": "^2.42.0",
|
|
||||||
"@tanstack/react-query": "^5.29.2",
|
|
||||||
"next": "^14.1.4",
|
|
||||||
"react": "^18.2.0",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
@@ -55,9 +47,5 @@
|
|||||||
"src/*"
|
"src/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tanstack/react-table": "^8.16.0",
|
|
||||||
"tailwind-merge": "^2.3.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,25 +27,13 @@
|
|||||||
"@radix-ui/react-tabs": "^1.0.4",
|
"@radix-ui/react-tabs": "^1.0.4",
|
||||||
"@radix-ui/react-toast": "^1.1.5",
|
"@radix-ui/react-toast": "^1.1.5",
|
||||||
"@radix-ui/react-tooltip": "1.0.7",
|
"@radix-ui/react-tooltip": "1.0.7",
|
||||||
"clsx": "^2.1.0",
|
"clsx": "^2.1.1",
|
||||||
"cmdk": "1.0.0",
|
"cmdk": "1.0.0",
|
||||||
"input-otp": "1.2.4",
|
"input-otp": "1.2.4",
|
||||||
|
"lucide-react": "^0.373.0",
|
||||||
"react-top-loading-bar": "2.3.1",
|
"react-top-loading-bar": "2.3.1",
|
||||||
"tailwind-merge": "^2.3.0"
|
"tailwind-merge": "^2.3.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
|
||||||
"@radix-ui/react-icons": "1.3.0",
|
|
||||||
"@tanstack/react-table": "^8.10.7",
|
|
||||||
"class-variance-authority": "^0.7.0",
|
|
||||||
"date-fns": "^3.2.0",
|
|
||||||
"lucide-react": "^0.372.0",
|
|
||||||
"next": "^14.2.2",
|
|
||||||
"next-themes": "^0.3.0",
|
|
||||||
"react-hook-form": "^7.51.2",
|
|
||||||
"react-i18next": "^14.1.0",
|
|
||||||
"sonner": "^1.4.41",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:*",
|
"@kit/eslint-config": "workspace:*",
|
||||||
"@kit/prettier-config": "workspace:*",
|
"@kit/prettier-config": "workspace:*",
|
||||||
@@ -58,18 +46,17 @@
|
|||||||
"class-variance-authority": "^0.7.0",
|
"class-variance-authority": "^0.7.0",
|
||||||
"date-fns": "^3.6.0",
|
"date-fns": "^3.6.0",
|
||||||
"eslint": "^8.57.0",
|
"eslint": "^8.57.0",
|
||||||
"lucide-react": "^0.372.0",
|
"next": "14.2.2",
|
||||||
"next": "14.3.0-canary.7",
|
|
||||||
"next-themes": "0.3.0",
|
"next-themes": "0.3.0",
|
||||||
"prettier": "^3.2.5",
|
"prettier": "^3.2.5",
|
||||||
"react-day-picker": "^8.10.1",
|
"react-day-picker": "^8.10.1",
|
||||||
"react-hook-form": "^7.51.3",
|
"react-hook-form": "^7.51.3",
|
||||||
"react-i18next": "^14.1.0",
|
"react-i18next": "^14.1.1",
|
||||||
"sonner": "^1.4.41",
|
"sonner": "^1.4.41",
|
||||||
"tailwindcss": "3.4.3",
|
"tailwindcss": "3.4.3",
|
||||||
"tailwindcss-animate": "^1.0.7",
|
"tailwindcss-animate": "^1.0.7",
|
||||||
"typescript": "^5.4.5",
|
"typescript": "^5.4.5",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
|
|||||||
840
pnpm-lock.yaml
generated
840
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -24,9 +24,9 @@
|
|||||||
"eslint-plugin-import": "^2.29.1",
|
"eslint-plugin-import": "^2.29.1",
|
||||||
"eslint-plugin-react": "^7.34.1",
|
"eslint-plugin-react": "^7.34.1",
|
||||||
"eslint-plugin-react-hooks": "^4.6.0",
|
"eslint-plugin-react-hooks": "^4.6.0",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"tailwind-merge": "^2.3.0",
|
"tailwind-merge": "^2.3.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/prettier-config": "workspace:^",
|
"@kit/prettier-config": "workspace:^",
|
||||||
|
|||||||
@@ -11,11 +11,11 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
|
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"@tanstack/react-table": "^8.16.0",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"prettier": "^3.2.5",
|
"prettier": "^3.2.5",
|
||||||
"prettier-plugin-tailwindcss": "^0.5.14",
|
"prettier-plugin-tailwindcss": "^0.5.14",
|
||||||
"tailwind-merge": "^2.3.0",
|
"tailwind-merge": "^2.3.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/tsconfig": "workspace:^",
|
"@kit/tsconfig": "workspace:^",
|
||||||
|
|||||||
@@ -16,12 +16,12 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"@tanstack/react-table": "^8.16.0",
|
||||||
"autoprefixer": "^10.4.19",
|
"autoprefixer": "^10.4.19",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"postcss": "8.4.38",
|
"postcss": "8.4.38",
|
||||||
"tailwind-merge": "^2.3.0",
|
"tailwind-merge": "^2.3.0",
|
||||||
"tailwindcss": "3.4.3",
|
"tailwindcss": "3.4.3",
|
||||||
"tailwindcss-animate": "^1.0.7",
|
"tailwindcss-animate": "^1.0.7",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kit/eslint-config": "workspace:^",
|
"@kit/eslint-config": "workspace:^",
|
||||||
|
|||||||
@@ -7,8 +7,8 @@
|
|||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tanstack/react-table": "^8.16.0",
|
"@tanstack/react-table": "^8.16.0",
|
||||||
"next": "14.3.0-canary.7",
|
"next": "14.2.2",
|
||||||
"tailwind-merge": "^2.3.0",
|
"tailwind-merge": "^2.3.0",
|
||||||
"zod": "^3.23.0"
|
"zod": "^3.23.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user