-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 3.4 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
{
"name": "@db-ui/mono",
"version": "0.0.0",
"type": "module",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/db-ui/mono"
},
"homepage": "https://db-ui.github.io/mono/",
"bugs": {
"url": "https://github.com/db-ui/one/issues"
},
"author": "",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"output/*",
"showcases/*",
"docs",
"scripts",
"e2e"
],
"scripts": {
"build": "npm run build --workspace=scripts",
"build-outputs": "npm run build-outputs --workspace=scripts",
"build-showcases": "npm run build-showcases --workspace=scripts",
"clean": "git clean -dfx --exclude=.env",
"dev": "npm run dev --workspace=scripts",
"generate:component": "npm run generate:component --workspace=@db-ui/components",
"lint": "npm-run-all -p lint:*",
"lint:jscpd": "jscpd . --exitCode 1 --config .config/.jscpd.json",
"lint:markdownlint": "markdownlint -c .config/.markdown-lint.yml **/*.md",
"lint:stylelint": "stylelint **/*.scss",
"lint:xo": "cross-env TIMING=1 NODE_OPTIONS=\"--max-old-space-size=4096\" xo",
"prepare": "husky",
"regenerate:screenshots": "npm run build && npm run build --workspace=react-showcase && docker-compose -f ./e2e/docker-compose.regenerate.yml up",
"regenerate:screenshots:rebuild": "npm run rm:builds && node scripts/rebuild-e2e.js",
"rm:builds": "npm run rm:builds --workspace=scripts",
"start": "npm run start --workspace=patternhub",
"test": "npm run test --workspace=scripts",
"test:react-components": "playwright test -c output/react/playwright.config.ts --ui",
"test:vue-components": "playwright test -c output/vue/playwright.config.ts --ui",
"update:dependency:playwright": "node .github/scripts/update-playwright.js",
"update:icon-fonts": "npm run update:icon-fonts --workspace=scripts"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@double-great/stylelint-a11y": "3.0.2",
"@guidepup/guidepup": "0.22.3",
"@guidepup/playwright": "^0.14.1",
"@playwright/test": "1.48.2",
"@types/fs-extra": "^11.0.4",
"accessibility-checker": "^3.1.78",
"adm-zip": "0.5.16",
"commander": "^12.1.0",
"cpr": "3.0.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"http-server": "14.1.1",
"husky": "9.1.6",
"jscpd": "^4.0.5",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.42.0",
"npm-run-all": "4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-pkg": "0.18.1",
"prettier-plugin-sh": "^0.14.0",
"replace-in-file": "^8.2.0",
"rimraf": "6.0.1",
"stylelint": "16.10.0",
"stylelint-config-sass-guidelines": "12.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-use-logical": "2.1.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"validate-branch-name": "^1.3.1",
"xo": "^0.59.3"
},
"validate-branch-name": {
"pattern": "((dbux-3)|(dependabot-)|^((test|feat|fix|chore|docs|refactor|style|ci|perf|[0-9]+)\\-[a-zA-Z0-9\\-]+)$)",
"errorMsg": "There is something wrong with your branch name. You should rename your branch to a valid name and try again. See the Pattern below."
}
}