67 lines
1.9 KiB
JSON
67 lines
1.9 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.8"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.9.1",
|
|
"@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.1",
|
|
"@supabase/supabase-js": "^2.46.1",
|
|
"@tanstack/react-query": "5.59.19",
|
|
"@types/react": "npm:types-react@19.0.0-rc.1",
|
|
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
|
|
"lucide-react": "^0.454.0",
|
|
"next": "15.0.2",
|
|
"next-themes": "0.4.3",
|
|
"react": "19.0.0-rc-45804af1-20241021",
|
|
"react-dom": "19.0.0-rc-45804af1-20241021",
|
|
"react-hook-form": "^7.53.1",
|
|
"react-i18next": "^15.1.0",
|
|
"sonner": "^1.7.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|