Refactor to make database webhook handler service a function. This change introduces the function `getDatabaseWebhookHandlerService()` to return an instance of the service, allowing easier management of instances. Dependencies are updated as well, including bringing `react-i18next` to version 14.1.1(i18next@23.11.3) and `@react-email/components` to version 0.0.17 and others.
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@kit/eslint-config",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"files": [
|
|
"./apps.js"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check \"**/*.{js,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@next/eslint-plugin-next": "^14.2.3",
|
|
"@tanstack/react-table": "^8.16.0",
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@types/eslint": "^8.56.10",
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
"@typescript-eslint/parser": "^7.8.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-turbo": "^1.13.3",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-react": "^7.34.1",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"next": "14.2.3",
|
|
"tailwind-merge": "^2.3.0",
|
|
"zod": "^3.23.4"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/prettier-config": "workspace:^",
|
|
"@kit/tsconfig": "workspace:^",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"./apps.js"
|
|
]
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|