- Updated application version from 2.21.8 to 2.21.9 in package.json. - Upgraded dependencies including prettier to version 3.7.4, @supabase/supabase-js to version 2.86.0, and @tanstack/react-query to version 5.90.11. - Adjusted various package.json files to reflect updated versions for lucide-react, react-hook-form, and nodemailer. - Enhanced pnpm-lock.yaml and pnpm-workspace.yaml for consistency in package versions. - Refactored import statements in several components for improved readability.
63 lines
1.8 KiB
JSON
63 lines
1.8 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",
|
|
"./hooks/*": "./src/hooks/*.ts",
|
|
"./webhooks": "./src/server/services/webhooks/index.ts",
|
|
"./policies": "./src/server/policies/index.ts",
|
|
"./policies/orchestrator": "./src/server/policies/orchestrator.ts",
|
|
"./services/account-invitations.service": "./src/server/services/account-invitations.service.ts"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^5.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"@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/otp": "workspace:*",
|
|
"@kit/policies": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:*",
|
|
"@kit/supabase": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:*",
|
|
"@supabase/supabase-js": "catalog:",
|
|
"@tanstack/react-query": "catalog:",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"class-variance-authority": "^0.7.1",
|
|
"date-fns": "^4.1.0",
|
|
"lucide-react": "^0.555.0",
|
|
"next": "catalog:",
|
|
"react": "catalog:",
|
|
"react-dom": "19.2.0",
|
|
"react-hook-form": "^7.67.0",
|
|
"react-i18next": "^16.3.5",
|
|
"zod": "catalog:"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|