This commit updates the versions of "@types/node", "react-hook-form", and "@tanstack/react-query-next-experimental" packages throughout the application. These updates include minor version changes that improve the stability and compatibility of these libraries within the app.
66 lines
1.7 KiB
JSON
66 lines
1.7 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",
|
|
"./webhooks": "./src/server/services/webhooks/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^5.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.3.4",
|
|
"@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/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:^",
|
|
"@kit/supabase": "workspace:^",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:^",
|
|
"@supabase/supabase-js": "^2.43.1",
|
|
"@tanstack/react-query": "5.32.0",
|
|
"@tanstack/react-table": "^8.16.0",
|
|
"@types/react": "^18.3.1",
|
|
"@types/react-dom": "^18.3.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"date-fns": "^3.6.0",
|
|
"lucide-react": "^0.376.0",
|
|
"next": "14.2.3",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"react-hook-form": "^7.51.4",
|
|
"react-i18next": "^14.1.1",
|
|
"sonner": "^1.4.41",
|
|
"zod": "^3.23.6"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|