-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.91 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.91 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
{
"name": "onyx-monorepo",
"type": "module",
"packageManager": "pnpm@11.0.6+sha512.97f906e1da2bedac3df83cadae04b4753a130092dd49d55cd36825ad3e623e9df3f97754f8f259e699172a360fac569acf2f908e7732bdae3eddb2dcf7e121fd",
"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.31.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint-community/eslint-utils": "^4.9.1",
"@eslint/compat": "^2.1.0",
"@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.6",
"@storybook/vue3-vite": "^10.3.6",
"@tsconfig/node24": "^24.0.4",
"@types/eslint": "^9.6.1",
"@types/jsdom": "^28.0.1",
"@types/node": "catalog:",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.17",
"@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.8",
"eslint": "^9.39.4",
"eslint-plugin-compat": "^7.0.2",
"eslint-plugin-playwright": "^2.10.2",
"eslint-plugin-storybook": "^10.3.6",
"eslint-plugin-vue": "^10.9.1",
"eslint-plugin-vue-scoped-css": "^3.0.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"jsdom": "^29.1.1",
"lightningcss": "^1.32.0",
"lint-staged": "^16.4.0",
"nuxt": "catalog:",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"publint": "^0.3.20",
"rimraf": "^6.1.3",
"simple-git-hooks": "^2.13.1",
"storybook": "^10.3.6",
"stylelint": "^17.11.0",
"stylelint-no-unsupported-browser-features": "^8.1.1",
"turbo": "^2.9.11",
"typescript": "catalog:",
"typescript-eslint": "^8.59.2",
"vite": "catalog:",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"prettier --write -u",
"eslint --fix"
]
}
}