Removed services and actions related to team account deletion as well as updated paths within other dependent files, better reflecting their new locations. Also, added a new service titled 'AccountBillingService' for handling billing-related operations and restructured the form layout and handled translation in 'team-account-danger-zone' component.
56 lines
1.3 KiB
JSON
56 lines
1.3 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": {
|
|
"./components": "./src/components/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.3.4",
|
|
"@kit/accounts": "^0.1.0",
|
|
"@kit/billing-gateway": "workspace:*",
|
|
"@kit/email-templates": "^0.1.0",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/mailers": "^0.1.0",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "^0.1.0",
|
|
"@kit/supabase": "^0.1.0",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "^0.1.0",
|
|
"@tanstack/react-query": "5.28.6",
|
|
"lucide-react": "^0.363.0",
|
|
"react-i18next": "^14.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@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": "0.1.0",
|
|
"lucide-react": "^0.363.0"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|