forked from wagtail/stylelint-config-wagtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
{
"name": "@wagtail/stylelint-config-wagtail",
"version": "0.4.1",
"description": "Shareable stylelint config for CSS and SCSS, following Wagtail’s code style",
"main": "index.js",
"files": [
"index.js"
],
"author": "wagtail",
"license": "MIT",
"homepage": "https://github.com/wagtail/stylelint-config-wagtail#readme",
"bugs": {
"url": "https://github.com/wagtail/stylelint-config-wagtail/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wagtail/stylelint-config-wagtail.git"
},
"keywords": [
"bem",
"config",
"itcss",
"lint",
"styleguide",
"stylelint-config",
"stylelint",
"wagtail"
],
"peerDependencies": {
"stylelint": ">=14.1.0"
},
"dependencies": {
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-declaration-strict-value": "^1.8.0"
},
"devDependencies": {
"@wagtail/eslint-config-wagtail": "^0.4.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"stylelint": "^14.3.0"
},
"scripts": {
"format": "prettier --write '**/*.{js,md,css,scss,yaml,yml,json}'",
"lint:format": "prettier --check '**/*.{js,md,css,scss,yaml,yml,json}'",
"lint:js": "eslint ./ --max-warnings 0",
"lint": "npm run lint:format && npm run lint:js",
"preflight": "npm run format && npm run lint && npm run test",
"test": "jest"
},
"prettier": {
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "all"
}
}