-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
90 lines (90 loc) · 2.9 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
{
"name": "onyx-monorepo",
"type": "module",
"packageManager": "[email protected]",
"author": "Schwarz IT KG",
"license": "Apache-2.0",
"scripts": {
"dev": "./scripts/dev.sh",
"build:all": "turbo run build build:storybook",
"test:all": "turbo run test:coverage",
"test:playwright:all": "turbo run test:playwright --concurrency 1",
"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": "pnpm run lint:all --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"publint:all": "pnpm -r --parallel --aggregate-output exec publint",
"prepare": "simple-git-hooks",
"gh:show-report": "./scripts/show-last-test-report.sh",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.19.0",
"@fontsource-variable/source-code-pro": "^5.1.1",
"@fontsource-variable/source-sans-3": "^5.1.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@playwright/experimental-ct-vue": "^1.50.1",
"@playwright/test": "^1.50.1",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/vue3": "^8.5.3",
"@storybook/vue3-vite": "^8.5.3",
"@tsconfig/node22": "^22.0.0",
"@types/eslint": "^9.6.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/eslint-plugin": "^1.1.25",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/tsconfig": "~0.7.0",
"eslint": "^9.19.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vue-scoped-css": "^2.9.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"publint": "^0.3.2",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"storybook": "^8.5.3",
"stylelint": "^16.14.1",
"stylelint-no-unsupported-browser-features": "^8.0.4",
"turbo": "^2.4.0",
"typescript": "catalog:",
"typescript-eslint": "^8.23.0",
"vite": "catalog:",
"vitest": "^3.0.5",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"prettier --write -u",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"@vue/compiler-core": "catalog:",
"@vue/compiler-dom": "catalog:",
"@vue/compiler-sfc": "catalog:",
"@vue/compiler-ssr": "catalog:",
"@vue/shared": "catalog:",
"vite": "catalog:",
"vue": "catalog:",
"sass-embedded": "catalog:"
}
}
}