This commit updates the 'next' package from version 14.2.0 to 14.2.1 across various modules. It also refactors the code for user account handling to make it controlled by an enableTeamAccounts flag in the featureFlagsConfig, essentially allowing the enabling or disabling of the 'team accounts' feature according to the specified flag.
85 lines
2.3 KiB
JSON
85 lines
2.3 KiB
JSON
{
|
|
"name": "@kit/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": {
|
|
"./personal-account-dropdown": "./src/components/personal-account-dropdown.tsx",
|
|
"./account-selector": "./src/components/account-selector.tsx",
|
|
"./personal-account-settings": "./src/components/personal-account-settings/index.ts",
|
|
"./hooks/*": "./src/hooks/*.ts"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^5.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.3.4",
|
|
"@kit/billing-gateway": "workspace:^",
|
|
"@kit/email-templates": "workspace:^",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/mailers": "workspace:^",
|
|
"@kit/monitoring": "workspace:^",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:^",
|
|
"@kit/supabase": "workspace:^",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:^",
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"@supabase/supabase-js": "^2.42.3",
|
|
"@tanstack/react-query": "5.29.0",
|
|
"@types/react": "^18.2.77",
|
|
"@types/react-dom": "^18.2.25",
|
|
"lucide-react": "^0.367.0",
|
|
"next": "14.2.1",
|
|
"next-themes": "0.3.0",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"react-hook-form": "^7.51.3",
|
|
"react-i18next": "^14.1.0",
|
|
"sonner": "^1.4.41",
|
|
"zod": "^3.22.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.0",
|
|
"lucide-react": "^0.367.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",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|