-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.74 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
45
46
{
"name": "eslint-plugin-react-prefer-function-component-development",
"description": "ESLint plugin that prevents the use of JSX class components",
"license": "MIT",
"author": "Tate <tatethurston@gmail.com>",
"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": {
"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",
"prepare": "husky install",
"test": "pnpm jest",
"test:ci": "pnpm jest --coverage",
"typecheck": "pnpm run --recursive typecheck"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"@types/eslint": "^8.44.2",
"@types/estree": "^1.0.1",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"codecov": "^3.8.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"prettier-package-json": "^2.8.0",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.6.9"
}