Files
myeasycms-v2/tooling/eslint/package.json
Giancarlo Buomprisco f5a961f155 Clean up packages and old references to eslint config (#158)
* Update dependencies and configuration files

- Upgrade Lucide React to version 0.475.0
- Update Markdoc to version 0.5.0
- Bump ESLint to version 9.20.0
- Update Tailwind CSS to version 4.0.5
- Add import-in-the-middle to Sentry package
- Remove import-in-the-middle and require-in-the-middle from web app
- Update browserslist configuration
- Remove eslintConfig from web app package.json
- Add ESLint configuration template for package generator
2025-02-10 11:42:35 +08:00

34 lines
827 B
JSON

{
"name": "@kit/eslint-config",
"version": "0.2.0",
"private": true,
"type": "module",
"files": [
"./apps.js",
"./base.js",
"./nextjs.js"
],
"scripts": {
"clean": "rm -rf .turbo node_modules",
"lint": "eslint .",
"format": "prettier --check \"**/*.{js,json}\""
},
"dependencies": {
"@next/eslint-plugin-next": "15.1.6",
"@types/eslint": "9.6.1",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-config-turbo": "^2.4.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"typescript-eslint": "8.23.0"
},
"devDependencies": {
"@kit/prettier-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"eslint": "^9.20.0",
"typescript": "^5.7.3"
},
"prettier": "@kit/prettier-config"
}