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",
|
2024-06-08 20:49:57 +02:00
|
|
|
"type": "module",
|
|
|
|
|
"exports": {
|
|
|
|
|
"./base": "./base.js",
|
|
|
|
|
"./nextjs": "./nextjs.js",
|
|
|
|
|
"./react": "./react.js"
|
|
|
|
|
},
|
2023-12-08 22:35:15 +01:00
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
2024-06-08 20:49:57 +02:00
|
|
|
"lint": "eslint",
|
2023-12-08 22:35:15 +01:00
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-08-22 11:35:43 +00:00
|
|
|
"@next/eslint-plugin-next": "^14.2.6",
|
2023-12-08 22:35:15 +01:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-08-15 15:10:13 +00:00
|
|
|
"eslint-config-turbo": "^2.0.14",
|
2024-02-03 23:13:50 +01:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2024-06-20 06:48:21 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.9.0",
|
2024-07-20 06:14:30 +00:00
|
|
|
"eslint-plugin-react": "^7.35.0",
|
2024-06-08 20:49:57 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
2024-08-19 17:48:15 +00:00
|
|
|
"typescript-eslint": "^8.2.0"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
2024-08-23 20:48:24 +00:00
|
|
|
"eslint": "^9.9.1",
|
2024-07-22 23:24:14 +00:00
|
|
|
"typescript": "^5.5.4"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2024-01-02 14:18:37 +01:00
|
|
|
"prettier": "@homarr/prettier-config"
|
2023-12-10 17:12:20 +01:00
|
|
|
}
|