This commit updates version numbers for several dependencies across multiple packages, including "@tanstack/react-query", "lucide-react", and "eslint-config-turbo". It also fixes a linebreak in makerkit marketing index file for better code consistency.
67 lines
1.8 KiB
JSON
67 lines
1.8 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",
|
|
"./components": "./src/components/index.ts",
|
|
"./hooks/*": "./src/hooks/*.ts",
|
|
"./api": "./src/server/api.ts"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^5.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.9.0",
|
|
"@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:^",
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"@supabase/supabase-js": "^2.44.4",
|
|
"@tanstack/react-query": "5.51.9",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"lucide-react": "^0.411.0",
|
|
"next": "14.2.5",
|
|
"next-themes": "0.3.0",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"react-hook-form": "^7.52.1",
|
|
"react-i18next": "^15.0.0",
|
|
"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/*"
|
|
]
|
|
}
|
|
}
|
|
}
|