-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "eslint-plugin-react-prefer-function-component-development",
"description": "ESLint plugin that prevents the use of JSX class components",
"license": "MIT",
"author": "Tate <[email protected]>",
"homepage": "https://github.com/tatethurston/eslint-plugin-react-prefer-function-component#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tatethurston/eslint-plugin-react-prefer-function-component.git"
},
"bugs": {
"url": "https://github.com/tatethurston/eslint-plugin-react-prefer-function-component/issues"
},
"scripts": {
"build": "(pnpm package:copy:files && cd packages/eslint-plugin-react-prefer-function-component && pnpm package:build)",
"lint": "pnpm typecheck && prettier --check . && prettier-package-json --list-different package.json && eslint .",
"lint:fix": "prettier --write . && prettier-package-json --write package.json && eslint --fix .",
"lint:fix:md": "prettier --write '*.md'",
"lint:fix:package": "prettier-package-json --write package.json",
"package:copy:files": "cp README.md LICENSE CHANGELOG.md packages/eslint-plugin-react-prefer-function-component",
"prepare": "husky install",
"test": "pnpm vitest",
"test:ci": "pnpm vitest --coverage",
"typecheck": "pnpm run --recursive typecheck"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.6",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vitest/coverage-v8": "3.0.9",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"prettier-package-json": "^2.8.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"packageManager": "[email protected]"
}