-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
118 lines (118 loc) · 4.2 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
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "arui-presets-lint",
"version": "5.10.0",
"description": "Config files for arui-apps",
"author": "Good guys from Alfa-Bank",
"license": "MIT",
"dependencies": {
"@alfalab/stylelint-core-vars": "1.3.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"arui-cssvars": "1.2.0",
"babel-eslint": "^10.1.0",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"command-line-args": "5.1.1",
"conventional-changelog-cli": "2.1.0",
"conventional-github-releaser": "3.1.5",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.1.2"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-dirnames": "^1.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unicorn": "^37.0.1",
"husky": "^4.2.5",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"stylelint": "^13.13.1"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.0",
"@semantic-release/npm": "7.0.5",
"@semantic-release/release-notes-generator": "9.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "4.15.2",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "14.0.1",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-dirnames": "1.0.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint-plugin-unicorn": "37.0.1",
"husky": "4.2.5",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"prettier-eslint": "13.0.0",
"prettier-eslint-cli": "5.0.1",
"semantic-release": "17.1.1",
"stylelint": "13.13.1",
"typescript": "4.4.4"
},
"scripts": {
"github-release": "conventional-github-releaser -p angular",
"lint": "eslint ./",
"precommit": "lint-staged",
"test": "yarn test:eslint && yarn test:stylelint",
"test:eslint": "eslint \"./test/**/*.{ts,tsx,js,jsx}\"",
"test:stylelint": "node ./test/stylelint-test.js",
"format": "prettier-eslint --write $INIT_CWD/{eslint,stylelint,test,commitlint}/**/*.{ts,tsx,js,jsx,css}"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,css}": [
"prettier-eslint --write",
"eslint"
],
"stylelint/*.js": [
"prettier-eslint --write",
"yarn test:stylelint"
]
},
"resolutions": {
"set-value": ">=2.0.1",
"js-yaml": ">=3.13.1",
"braces": ">=2.3.1",
"lodash.merge": ">=4.6.2",
"lodash": ">=4.17.12",
"mixin-deep": ">=1.3.2",
"handlebars": ">=4.5.3",
"kind-of": ">= 6.0.3",
"minimist": ">= 1.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfa-laboratory/arui-presets-lint.git"
},
"bugs": {
"url": "https://github.com/alfa-laboratory/arui-presets-lint/issues"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": "./prettier.js"
}