* 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
34 lines
827 B
JSON
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"
|
|
}
|