-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "eslint-config-brad",
"version": "5.0.9",
"private": true,
"description": "bradzacher's ESlint config",
"repository": "https://github.com/bradzacher/eslint-config-brad.git",
"author": "Brad Zacher <[email protected]>",
"license": "MIT",
"resolutions": {
"eslint": "^8.22.0"
},
"type": "commonjs",
"devDependencies": {
"@types/json-schema": "^7.0.11",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.7.9",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@typescript-eslint/utils": "^5.33.1",
"eslint": "^8.22.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-restricted-globals": "0.2.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"json-schema-to-typescript": "^11.0.2",
"mkdirp": "^1.0.4",
"patch-package": "^6.4.7",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-restricted-globals": "^0.2.0"
},
"scripts": {
"build": "make build",
"check:format": "yarn format-no-write --list-different",
"check:types": "tsc -p ./tsconfig.json --noEmit && tsc -p ./scripts/tsconfig.json --noEmit",
"ci": "make ci",
"clean": "rimraf -g ./dist/",
"format-no-write": "prettier \"./**/*.{ts,json,md}\" --config=.prettierrc.js",
"format": "yarn format-no-write --write",
"generate:types": "ts-node --emit -P ./scripts/tsconfig.json --esm -T ./scripts/generateTypes.ts",
"lint": "eslint ./src ./scripts ./types --ext .ts",
"postinstall": "patch-package",
"prepush": "make ci"
}
}