This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.25 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@storis/eslint-config",
"version": "4.0.0",
"description": "STORIS eslint Configurations",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext cjs,mjs,js,ts --cache && echo \"eslint: no lint errors\"",
"lint:fix": "eslint . --ext cjs,mjs,js,ts --fix --cache && echo \"eslint: no lint errors\"",
"lint:nocache": "eslint . --ext cjs,mjs,js,ts && echo \"eslint: no lint errors\"",
"lint:clear": "rimraf ./.eslintcache",
"prettier": "prettier . --ignore-unknown --check",
"prettier:fix": "prettier . --ignore-unknown --write",
"style:fix": "npm-run-all prettier:fix lint:fix",
"test": "npm-run-all --parallel prettier lint && npm run test:unit",
"test:unit": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/STORIS/eslint-config.git"
},
"keywords": [
"eslint",
"eslintconfig"
],
"author": "STORIS",
"license": "MIT",
"bugs": {
"url": "https://github.com/STORIS/eslint-config/issues"
},
"homepage": "https://github.com/STORIS/eslint-config#readme",
"engines": {
"node": "^16.0.0 || ^18.0.0"
},
"devDependencies": {
"@storis/prettier-config": "1.0.0",
"@storis/tsconfig": "1.0.0",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-babel-module": "5.3.1",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.9.1",
"husky": "8.0.3",
"jest": "28.1.3",
"lint-staged": "13.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.2",
"typescript": "4.9.4"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-babel-module": "^5.3.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.5.0",
"eslint-plugin-react": "^7.29.0",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-testing-library": "^5.2.0",
"typescript": "^4.6.0"
},
"peerDependenciesMeta": {
"eslint-config-airbnb": {
"optional": true
},
"eslint-config-airbnb-base": {
"optional": true
},
"eslint-import-resolver-babel-module": {
"optional": true
},
"eslint-import-resolver-webpack": {
"optional": true
},
"eslint-plugin-jsx-a11y": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"eslint-plugin-testing-library": {
"optional": true
}
},
"prettier": "@storis/prettier-config"
}