* Add events handling and enhance analytics tracking Added a new events system to track user actions throughout the application. Specific significant events such as user signup, sign-in, and checkout have dedicated handlers. Updated the analytics system to handle these event triggers and improved analytics reporting. An analytics provider has been implemented to manage event subscriptions and analytics event mappings. * Remove unused dependencies from package.json files Unused packages "@tanstack/react-table" and "next" have been removed from the packages/shared and tooling directories respectively. These changes help ensure that only needed packages are included in the project, reducing potential security risks and unnecessary processing overhead. * Update dependencies Multiple package versions were updated including "@tanstack/react-query" and "lucide-react"
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "@kit/auth",
|
|
"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": {
|
|
"./sign-in": "./src/sign-in.ts",
|
|
"./sign-up": "./src/sign-up.ts",
|
|
"./password-reset": "./src/password-reset.ts",
|
|
"./shared": "./src/shared.ts",
|
|
"./mfa": "./src/mfa.ts",
|
|
"./captcha/client": "./src/captcha/client/index.ts",
|
|
"./captcha/server": "./src/captcha/server/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.9.0",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:^",
|
|
"@kit/supabase": "workspace:^",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:^",
|
|
"@marsidev/react-turnstile": "^0.7.2",
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"@supabase/supabase-js": "^2.44.4",
|
|
"@tanstack/react-query": "5.51.11",
|
|
"@types/react": "^18.3.3",
|
|
"lucide-react": "^0.412.0",
|
|
"next": "14.2.5",
|
|
"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/*"
|
|
]
|
|
}
|
|
}
|
|
}
|