-
Notifications
You must be signed in to change notification settings - Fork 273
/
package.json
73 lines (73 loc) · 1.98 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
{
"name": "uportal",
"private": true,
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^1.0.0",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.1.0",
"postcss-less": "^6.0.0",
"prettier": "~3.3.0",
"remark-cli": "^12.0.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-validate-links": "^13.0.0",
"stylelint": "^16.0.0",
"stylelint-config-standard-less": "^3.0.0",
"stylelint-prettier": "^5.0.0"
},
"workspaces": [
"uPortal-webapp/"
],
"scripts": {
"lint-js": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint-less": "stylelint **/*.less !**/bootstrap/**/*.less !**/build/**/*.less",
"lint-md": "remark -f *.md docs/**",
"format-js": "npm run lint-js -- --fix",
"format-less": "npm run lint-less -- --fix"
},
"remarkConfig": {
"plugins": [
"preset-lint-recommended",
"preset-lint-consistent"
]
},
"stylelint": {
"customSyntax": "postcss-less",
"extends": [
"stylelint-config-standard-less",
"stylelint-prettier/recommended"
],
"rules": {
"at-rule-no-unknown": null,
"declaration-block-no-shorthand-property-overrides": null,
"function-no-unknown": null,
"less/no-duplicate-variables": null,
"media-feature-range-notation": [
"prefix"
],
"media-query-no-invalid": null,
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null,
"prettier/prettier": [
true,
{
"singleQuote": false,
"tabWidth": 2
}
],
"property-no-unknown": null,
"selector-class-pattern": null,
"selector-id-pattern": null
}
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "es5",
"tabWidth": 4
}
}