The 'next' package and its dependencies in several packages have been upgraded. The 'lemonsqueezy.js' and 'pino' libraries also received updates. This commit ensures that the project uses the latest features, performance improvements, and security patches from these dependencies.
66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "@kit/team-accounts",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"exports": {
|
|
"./api": "./src/server/api.ts",
|
|
"./components": "./src/components/index.ts",
|
|
"./webhooks": "./src/server/services/webhooks/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^5.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.6.0",
|
|
"@kit/accounts": "workspace:^",
|
|
"@kit/billing-gateway": "workspace:*",
|
|
"@kit/email-templates": "workspace:^",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/mailers": "workspace:^",
|
|
"@kit/monitoring": "workspace:*",
|
|
"@kit/next": "workspace:^",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:^",
|
|
"@kit/supabase": "workspace:^",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:^",
|
|
"@supabase/supabase-js": "^2.43.4",
|
|
"@tanstack/react-query": "5.44.0",
|
|
"@tanstack/react-table": "^8.17.3",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"date-fns": "^3.6.0",
|
|
"lucide-react": "^0.394.0",
|
|
"next": "14.2.4",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"react-hook-form": "^7.51.5",
|
|
"react-i18next": "^14.1.2",
|
|
"sonner": "^1.5.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|