-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.27 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.27 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
{
"name": "onyx-monorepo",
"type": "module",
"packageManager": "pnpm@10.33.0",
"author": "Schwarz IT KG",
"license": "Apache-2.0",
"scripts": {
"dev": "./scripts/dev.sh",
"build:all": "turbo run build build:storybook",
"test:all": "vitest --coverage",
"test:playwright:all": "turbo run test:playwright",
"format:all": "prettier --write .",
"format:check:all": "prettier --check .",
"stylelint": "turbo run stylelint",
"lint:all": "eslint .",
"lint:fix:all": "pnpm run lint:all --fix",
"lint:ci:all": "SARIF_ESLINT_IGNORE_SUPPRESSED=true pnpm run lint:all --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"publint:all": "pnpm -r --parallel --no-reporter-hide-prefix exec publint",
"prepare": "simple-git-hooks",
"gh:show-report": "./scripts/show-last-test-report.sh",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint-community/eslint-utils": "^4.9.1",
"@eslint/compat": "^2.0.5",
"@eslint/js": "^9.39.4",
"@fontsource-variable/source-code-pro": "^5.2.7",
"@fontsource-variable/source-sans-3": "^5.2.9",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@playwright/test": "catalog:",
"@storybook/addon-docs": "^10.3.5",
"@storybook/vue3-vite": "^10.3.5",
"@tsconfig/node24": "^24.0.4",
"@types/eslint": "^9.6.1",
"@types/jsdom": "^28.0.1",
"@types/node": "catalog:",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/eslint-plugin": "^1.6.15",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "~0.9.1",
"@vueless/storybook-dark-mode": "^10.0.7",
"eslint": "^9.39.4",
"eslint-plugin-compat": "^7.0.1",
"eslint-plugin-playwright": "^2.10.1",
"eslint-plugin-storybook": "^10.3.5",
"eslint-plugin-vue": "^10.8.0",
"eslint-plugin-vue-scoped-css": "^3.0.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"nuxt": "catalog:",
"prettier": "^3.8.2",
"prettier-plugin-organize-imports": "^4.3.0",
"publint": "^0.3.18",
"rimraf": "^6.1.3",
"simple-git-hooks": "^2.13.1",
"storybook": "^10.3.5",
"stylelint": "^17.6.0",
"stylelint-no-unsupported-browser-features": "^8.1.1",
"turbo": "^2.9.6",
"typescript": "catalog:",
"typescript-eslint": "^8.58.1",
"vite": "catalog:",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"prettier --write -u",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"@playwright/experimental-ct-vue": "catalog:",
"@playwright/test": "catalog:",
"@vue/compiler-core": "catalog:",
"@vue/compiler-dom": "catalog:",
"@vue/compiler-sfc": "catalog:",
"@vue/compiler-ssr": "catalog:",
"@vue/shared": "catalog:",
"nuxt": "catalog:",
"playwright": "catalog:",
"playwright-core": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vue": "catalog:",
"sass-embedded": "catalog:"
}
}
}