mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 17:13:25 +00:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "@movie-web/eslint-config",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"files": [
|
|
"./base.js",
|
|
"./react.js"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^6.19.1",
|
|
"@typescript-eslint/parser": "^6.19.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-turbo": "^1.11.3",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@movie-web/prettier-config": "workspace:^0.1.0",
|
|
"@movie-web/tsconfig": "workspace:^0.1.0",
|
|
"@types/eslint": "^8.56.2",
|
|
"eslint": "^8.56.0",
|
|
"prettier": "^3.1.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"./base.js"
|
|
]
|
|
},
|
|
"prettier": "@movie-web/prettier-config"
|
|
}
|