-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.88 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ueberbit.dev",
"version": "0.0.0",
"description": "UEBERBIT Dev webpage",
"author": {
"name": "UEBERBIT GmbH",
"url": "https://ueberbit.de"
},
"contributors": [
{
"name": "Willi Woldt",
"email": "willi.woldt@ueberbit.de"
}
],
"scripts": {
"postinstall": "git config core.hooksPath ./hooks/git",
"build": "pnpm -r build",
"update:drupal:core": "composer update \"drupal/core-*\" --with-all-dependencies",
"update:drupal:modules": "composer update \"drupal/*\" --with-all-dependencies --working"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"lint-staged": "^13.0.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-recommended": "^8.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/node": "^17.0.42",
"devmoji": "^2.3.0"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "auto",
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-property-sort-order-smacss",
"stylelint-config-prettier"
],
"plugins": [
"stylelint-order"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"screen",
"layer",
"import-glob",
"unocss-placeholder"
]
}
],
"function-no-unknown": [
true,
{
"ignoreFunctions": [
"theme"
]
}
],
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null
}
},
"eslintConfig": {
"extends": [
"@antfu",
"eslint-config-prettier"
],
"rules": {
"react/no-unknown-property": "off"
},
"ignorePatterns": [
"**/*.js",
"**/*.mjs",
"**/ApiCustomElements.ts"
]
},
"lint-staged": {
"web/themes/custom/**/*.{ts,js,jsx,tsx,vue}": "pnpm exec eslint --cache --fix --ignore-path .gitignore",
"web/themes/custom/**/*.css": "pnpm exec stylelint --fix",
"web/themes/custom/**/*.{php,module,inc,install,test,profile,theme}": "./vendor/bin/phpcbf --standard=./.vscode/ruleset.xml",
"web/modules/custom/**/*.{php,module,inc,install,test,profile}": "./vendor/bin/phpcbf --standard=./vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml --ignore=web/modules/contrib"
}
}