-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "@weksik/eslint",
"private": false,
"type": "module",
"version": "1.0.0",
"license": "MIT",
"files": [
"index.js",
"README.md"
],
"publishConfig": {
"access": "public"
},
"main": "index.js",
"description": "Библиотека для шаринга eslint конфигурации",
"author": "Vladislav Marchenko",
"scripts": {
"commit": "npx cz"
},
"dependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.11.0",
"typescript-eslint": "^8.10.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@types/node": "^22.7.6",
"commitizen": "^4.3.1",
"commitlint": "^19.5.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.2.1",
"git-cz": "^4.9.0",
"semantic-release": "^24.1.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": "^9.12.0"
},
"overrides": {
"eslint": "^9.12.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
}
}