2023-12-08 22:35:15 +01:00
|
|
|
{
|
2024-01-02 14:18:37 +01:00
|
|
|
"name": "@homarr/eslint-config",
|
2023-12-08 22:35:15 +01:00
|
|
|
"version": "0.2.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"files": [
|
|
|
|
|
"./base.js",
|
|
|
|
|
"./nextjs.js",
|
|
|
|
|
"./react.js"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-04-27 12:31:46 +02:00
|
|
|
"@next/eslint-plugin-next": "^14.2.3",
|
2024-04-30 21:12:43 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
|
|
|
"@typescript-eslint/parser": "^7.8.0",
|
2023-12-08 22:35:15 +01:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-04-27 14:36:32 +02:00
|
|
|
"eslint-config-turbo": "^1.13.3",
|
2024-02-03 23:13:50 +01:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2023-12-08 22:35:15 +01:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
2024-03-16 15:51:47 +01:00
|
|
|
"eslint-plugin-react": "^7.34.1",
|
2024-04-27 12:49:17 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.2"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-04-20 12:50:23 +02:00
|
|
|
"@types/eslint": "^8.56.10",
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
2024-02-27 21:19:06 +01:00
|
|
|
"eslint": "^8.57.0",
|
2024-04-11 20:56:02 +02:00
|
|
|
"typescript": "^5.4.5"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"root": true,
|
|
|
|
|
"extends": [
|
|
|
|
|
"./base.js"
|
|
|
|
|
]
|
|
|
|
|
},
|
2024-01-02 14:18:37 +01:00
|
|
|
"prettier": "@homarr/prettier-config"
|
2023-12-10 17:12:20 +01:00
|
|
|
}
|