-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.93 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.93 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@db-ux/core-web",
"version": "0.0.0",
"type": "module",
"description": "DB UX Design System",
"repository": {
"type": "git",
"url": "git+https://github.com/db-ux-design-system/core-web.git"
},
"homepage": "https://design-system.deutschebahn.com/core-web/",
"bugs": {
"url": "https://github.com/db-ux-design-system/core-web/issues"
},
"author": "DB Systel GmbH",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@11.0.0",
"engines": {
"node": ">= 24"
},
"keywords": [
"design-system",
"ui-library",
"components",
"angular",
"react",
"vue",
"web-components",
"tailwind",
"css",
"scss",
"accessibility",
"a11y",
"responsive",
"frontend",
"user-interface",
"deutsche-bahn",
"db",
"ux",
"db-ux",
"styleguide"
],
"scripts": {
"build": "pnpm --filter scripts run build",
"build-outputs": "pnpm --filter scripts run build-outputs",
"build-showcases": "pnpm --filter scripts run build-showcases",
"build-storybooks": "pnpm --filter scripts run build-storybooks",
"changeset": "changeset",
"ci:version": "changeset version && pnpm tsx scripts/github/changesets/version-bump.ts",
"clean": "git clean -dfx --exclude=.env && node scripts/npx-from-dev-dependencies.mjs husky",
"codestyle": "prettier . --write",
"commit:updated-snapshots": "git diff --name-only --diff-filter=M | xargs git add && git commit --message 'test: updated snapshots'",
"dev": "pnpm --filter scripts run dev",
"generate:agent": "pnpm --filter scripts run agent",
"generate:component": "pnpm --filter @db-ux/core-components run generate:component",
"lint": "run-p lint:*",
"lint-docs-file-references": "node scripts/check-docs.js",
"lint-packages": "pnpm tsx scripts/lint-packages.ts publint",
"lint:codespell": "cspell . --config .config/cspell.config.ts",
"lint:jscpd": "jscpd . --exitCode 1 --config .config/.jscpd.json",
"lint:markdownlint": "markdownlint --config .config/.markdown-lint.yml **/*.md",
"lint:package-json": "npmPkgJsonLint packages/*/package.json --configFile .config/.npmpackagejsonlintrc.json",
"lint:stylelint": "stylelint **/*.{css,scss}",
"lint:xo": "xo",
"prepare": "husky",
"regenerate:screenshots": "pnpm run build && pnpm --filter react-showcase run build && pnpm --filter react-showcase run regenerate:visual-snapshots && pnpm --filter react-showcase run regenerate:aria-snapshots",
"release:publish": "node scripts/github/publish-npm.js",
"reset": "pnpm run clean && pnpm install && pnpm run prepare",
"rm:builds": "pnpm --filter scripts run rm:builds",
"start": "pnpm --filter patternhub run start",
"test": "pnpm --filter scripts run test",
"test:react-core-components": "playwright test --config output/react/playwright.config.ts --ui",
"test:vue-components": "playwright test --config output/vue/playwright.config.ts --ui",
"update:dependency:playwright": "node scripts/github/update-playwright.js"
},
"devDependencies": {
"@axe-core/playwright": "4.11.3",
"@changesets/cli": "2.31.0",
"@changesets/types": "6.1.0",
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@db-ux/core-components": "workspace:*",
"@db-ux/core-eslint-plugin": "*",
"@db-ux/core-foundations": "workspace:*",
"@db-ux/core-stylelint": "*",
"@db-ux/db-theme": "5.6.2",
"@db-ux/db-theme-fonts": "2.0.5",
"@db-ux/db-theme-icons": "3.9.0",
"@double-great/stylelint-a11y": "3.4.11",
"@guidepup/guidepup": "0.24.1",
"@guidepup/playwright": "0.15.0",
"@guidepup/record": "0.1.0",
"@guidepup/setup": "0.21.0",
"@playwright/experimental-ct-core": "1.59.1",
"@playwright/test": "1.59.1",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"accessibility-checker": "4.0.17",
"cspell": "10.0.0",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-xo": "0.51.0",
"eslint-plugin-package-json": "0.91.2",
"eslint-plugin-prettier": "5.5.5",
"husky": "9.1.7",
"jscpd": "4.0.9",
"lint-staged": "16.4.0",
"markdownlint-cli": "0.48.0",
"npm-package-json-lint": "10.4.0",
"npm-run-all2": "8.0.4",
"playwright": "1.59.1",
"playwright-core": "1.59.1",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-pkg": "0.22.1",
"stylelint": "17.10.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-use-logical": "2.1.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"validate-branch-name": "1.3.2",
"xo": "2.0.2"
},
"validate-branch-name": {
"pattern": "((copilot/)|(dependabot-)|((test|feat|fix|chore|docs|refactor|style|ci|perf|alert|[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."
}
}