-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 1.7 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
{
"private": true,
"scripts": {
"test": "eslint . && gulp"
},
"dependencies": {
"autoprefixer": "^10.4.16",
"browserslist": "^4.22.1",
"css-tree": "^2.3.1",
"cssom": "^0.5.0",
"gonzales": "^1.0.7",
"gulp": "^4.0.2",
"gulp-bench": "^1.1.0",
"gulp-bench-summary": "^0.1.0",
"less": "^4.2.0",
"lightningcss": "^1.22.0",
"mensch": "^0.3.4",
"node-sass": "^9.0.0",
"parserlib": "^1.1.1",
"postcss": "^8.4.31",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-selector-parser": "^6.0.13",
"postcss-simple-vars": "^7.0.1",
"postcss-value-parser": "^4.2.0",
"rework": "^1.0.1",
"sass": "^1.69.0",
"stylecow-core": "^2.5.0",
"stylecow-plugin-calc": "^2.0.0",
"stylecow-plugin-nested-rules": "^5.0.1",
"stylecow-plugin-prefixes": "^6.0.5",
"stylecow-plugin-variables": "^5.1.4",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylis": "^4.3.0",
"through2": "^4.0.2"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.1",
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"no-unused-expressions": "off",
"n/global-require": "off"
}
}
}