-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "@amille/eslint-config",
"version": "0.0.0-development",
"description": "",
"repository": "github:amille44420/eslint-config",
"bugs": "https://github.com/amille44420/eslint-config/issues",
"homepage": "https://github.com/amille44420/eslint-config",
"keywords": [
"eslint",
"prettier",
"config",
"amille"
],
"license": "MIT",
"author": "Adrien Mille <[email protected]>",
"files": [
"index.js",
"react.js",
"prettier.js",
"build"
],
"dependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/eslint": "^8.4.7",
"@types/node": "^18.11.3",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"commitlint-circle": "^1.0.0",
"eslint": "^8.25.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4"
},
"peerDependencies": {
"eslint": "^7.0.0",
"prettier": "^2.0.5"
},
"scripts": {
"lint": "eslint --ext .ts .",
"lint:fix": "yarn lint --fix",
"lint:commit": "commitlint",
"lint:commit:ci": "commitlint-circle",
"release": "semantic-release",
"build": "yarn tsc"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}