-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.54 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
{
"name": "onyx-monorepo",
"type": "module",
"packageManager": "[email protected]",
"author": "Schwarz IT KG",
"license": "Apache-2.0",
"scripts": {
"build:all": "turbo build build:storybook",
"test:all": "turbo test:coverage",
"test:components:all": "turbo test:components test:integration --concurrency 1",
"format:all": "prettier --write .",
"format:check:all": "prettier --check .",
"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.9",
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@fontsource-variable/source-code-pro": "^5.1.0",
"@fontsource-variable/source-sans-3": "^5.1.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@playwright/experimental-ct-vue": "^1.48.2",
"@playwright/test": "^1.48.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/vue3": "^8.4.2",
"@storybook/vue3-vite": "^8.4.2",
"@tsconfig/node22": "^22.0.0",
"@types/eslint": "^9.6.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/eslint-plugin": "^1.1.7",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/tsconfig": "~0.5.1",
"eslint": "^9.14.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-playwright": "^2.0.1",
"eslint-plugin-vue": "^9.30.0",
"eslint-plugin-vue-scoped-css": "^2.8.1",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"publint": "^0.2.12",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"storybook": "^8.4.2",
"turbo": "^2.2.3",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"prettier --write -u",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"vue": "catalog:",
"sass-embedded": "catalog:"
}
}
}