-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"version": "25.0.0",
"name": "@simonkberg/eslint-config",
"description": "A shareable eslint config for my JavaScript projects",
"main": "index.js",
"scripts": {
"test": "yarn prettier:check && eslint . && jest",
"prettier:check": "prettier --list-different '**/*.{js?(on),ts?(x),md,y?(a)ml}'",
"prettier:format": "prettier --write '**/*.{js?(on),ts?(x),md,y?(a)ml}'",
"prerelease": "yarn test",
"release": "standard-version -s"
},
"repository": {
"type": "git",
"url": "https://github.com/simonkberg/eslint-config.git"
},
"author": "Simon Kjellberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonkberg/eslint-config/issues"
},
"homepage": "https://github.com/simonkberg/eslint-config#readme",
"engines": {
"node": ">= 10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"jest --findRelatedTests"
],
"*.{json,ts?(x),md,y?(a)ml}": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"eslintConfig": {
"extends": "./index.js"
},
"eslintIgnore": [
"__fixtures__"
],
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
]
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
},
"peerDependencies": {
"eslint": ">=5"
},
"devDependencies": {
"@types/jest": "26.0.24",
"eslint": "7.32.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"react": "17.0.2",
"standard-version": "9.5.0",
"typescript": "4.9.5"
},
"files": [
"index.js",
"flowtype.js",
"react.js",
"typescript.js"
]
}