-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.42 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
{
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.19.6",
"@symfony/webpack-encore": "^4.1.2",
"autoprefixer": "^10.4.14",
"browser-sync-webpack-plugin": "^2.3.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.26.1",
"file-loader": "^6.2.0",
"mime": "^3.0.0",
"postcss-loader": "^7.3.0",
"regenerator-runtime": "^0.13.7",
"sass": "^1.51.0",
"sass-loader": "^13.2.0",
"stylelint": "^14.16.0",
"stylelint-config-standard-scss": "^6.1.0",
"webpack-notifier": "^1.15.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server --config-name default",
"dev": "encore dev --config-name default",
"watch": "encore dev --watch --config-name default",
"build": "encore production --progress --config-name default"
},
"browserslist": [
"last 3 version",
"> 1%",
"not ie <= 10",
"not dead"
],
"jshintConfig": {
"esversion": 11,
"undef": true,
"unused": true,
"varstmt": true,
"jquery": false,
"devel": true,
"browser": true,
"node": true,
"worker": false
},
"stylelint": {
"extends": "stylelint-config-standard-scss",
"rules": {
"indentation": 4,
"string-quotes": null,
"unit-disallowed-list": [
"rem"
],
"selector-pseudo-element-colon-notation": "single",
"selector-list-comma-newline-after": null,
"selector-class-pattern": [
"(^([a-z][a-z0-9]*)([-|_][a-z0-9]+)*$)",
{
"message": "Expected class selector to be kebab-case or snake-case"
}
],
"scss/dollar-variable-empty-line-before": [
"always",
{
"execept": [
"first-nested"
],
"ignore": [
"after-comment",
"inside-single-line-block"
]
}
],
"value-keyword-case": null,
"scss/double-slash-comment-empty-line-before": null,
"media-feature-range-notation": null,
"no-descending-specificity": null
}
}
}