This commit accomplishes a few modifications including the elimination of `use-toast.tsx` due to redundancy. The authentication methods in `personal-accounts-server-actions.ts` were refactored to improve service integration and data handling. Additionally, UI components were updated for better readability and clarity. Cascading deletion was enabled in the `schema.sql` file for 'invited_by' reference.
43 lines
925 B
JSON
43 lines
925 B
JSON
{
|
|
"name": "@kit/shared",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"exports": {
|
|
"./logger": "./src/logger/index.ts",
|
|
"./hooks/*": "./src/hooks/*.ts",
|
|
"./contexts/*": "./src/contexts/*.ts",
|
|
"./cookies/*": "./src/cookies/*.ts",
|
|
"./utils": "./src/utils.ts"
|
|
},
|
|
"dependencies": {
|
|
"pino": "^8.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "0.2.0",
|
|
"@kit/prettier-config": "0.1.0",
|
|
"@kit/tailwind-config": "0.1.0",
|
|
"@kit/tsconfig": "0.1.0"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|