Files
myeasycms-v2/tooling/eslint/package.json
giancarlo 3ce6c62425 Update Zod and Lucide-react version in all packages
The Zod and Lucide-react libraries have been updated to version ^3.23.0 and ^0.372.0, respectively, in all packages. This change ensures that all packages are using the latest stable versions of these libraries, keeping the codebase up-to-date and minimizing potential compatibility issues.
2024-04-22 14:03:03 +08:00

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.2",
"@tanstack/react-table": "^8.16.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.9",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.13.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"next": "14.3.0-canary.7",
"tailwind-merge": "^2.3.0",
"zod": "^3.23.0"
},
"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"
}