-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.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
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
{
"dependencies": {
"feather-icons": "^4.28.0",
"interactjs": "^1.10.11",
"jquery": "^3.6.0",
"js-yaml": "^4.1.0",
"tippy.js": "^6.3.2"
},
"devDependencies": {
"autoprefixer": "^10.3.7",
"css-loader": "^6.4.0",
"postcss-loader": "^6.2.0",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"indent": [
"error",
4
]
}
},
"prettier": {
"tabWidth": 4
},
"stylelint": {
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"rules": {
"indentation": 4,
"number-leading-zero": "always",
"max-empty-lines": 1,
"string-quotes": "double",
"selector-max-id": 0,
"selector-list-comma-newline-after": "always",
"rule-empty-line-before": [
"always",
{
"ignore": [
"after-comment",
"first-nested"
]
}
],
"comment-empty-line-before": [
"always",
{
"except": [
"first-nested"
]
}
],
"block-opening-brace-space-before": "always",
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"declaration-block-single-line-max-declarations": 1,
"declaration-property-value-blacklist": {
"/^border/": [
"none"
]
},
"at-rule-empty-line-before": [
"always",
{
"ignore": [
"after-comment"
],
"except": [
"after-same-name",
"first-nested"
]
}
],
"scss/dollar-variable-pattern": "^_?[a-z]+[\\w-]*$",
"scss/at-extend-no-missing-placeholder": true,
"order/order": [
"declarations",
{
"type": "at-rule"
},
{
"type": "at-rule",
"hasBlock": true
},
"rules"
]
}
}
}