-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "@algoan/eslint-config-react",
"version": "3.4.0",
"description": "Algoan React ESLint configuration",
"main": "index.js",
"scripts": {
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/eslint-config-react.git"
},
"keywords": [
"eslint",
"algoan",
"react",
"typescript",
"eslintconfig"
],
"author": "Algoan",
"license": "ISC",
"bugs": {
"url": "https://github.com/algoan/eslint-config-react/issues"
},
"homepage": "https://github.com/algoan/eslint-config-react#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0"
},
"peerDependencies": {
"eslint": ">= 8",
"prettier": ">=3",
"react": ">=18",
"typescript": ">= 4.7"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.9.0",
"@commitlint/config-conventional": "^17.8.1",
"@semantic-release/git": "^10.0.1",
"commitlint": "^17.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"prettier": "^3.3.3",
"semantic-release": "^19.0.5",
"typescript": "^5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"arrowParens": "always"
}
}