-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.2 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
{
"name": "root",
"version": "0.9.3",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint packages --fix",
"type-check": "nx run-many -t type-check",
"build": "nx run-many -t build",
"test:unit": "nx run-many -t test:unit",
"test:storybook": "nx run-many -t test:storybook",
"docs": "nx run-many -t docs --parallel=5",
"docs:build": "nx run-many -t docs:build",
"package-check": "nx run-many -t package-check",
"package-type-check": "nx run-many -t package-type-check",
"clean": "rm -r packages/*/dist packages/*/node_modules node_modules package-lock.json .nx"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@chromatic-com/storybook": "^5.2.1",
"@eslint/compat": "^2.1.0",
"@microsoft/api-extractor": "^7.58.11",
"@nx/js": "22.6.4",
"@storybook/addon-a11y": "^10.5.3",
"@storybook/addon-designs": "^11.1.4",
"@storybook/addon-docs": "^10.5.3",
"@storybook/addon-onboarding": "^10.5.3",
"@storybook/addon-vitest": "^10.5.3",
"@storybook/vue3-vite": "^10.5.3",
"@tsconfig/node22": "^22.0.5",
"@types/dom-screen-wake-lock": "^1.0.3",
"@types/jsdom": "^28.0.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^26.1.1",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/browser": "^4.1.10",
"@vitest/browser-playwright": "^4.1.10",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/eslint-plugin": "^1.6.23",
"@vitest/ui": "^4.1.10",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/test-utils": "^2.4.11",
"@vue/tsconfig": "^0.9.1",
"cross-env": "^10.1.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^10.5.3",
"eslint-plugin-vue": "^10.10.0",
"jsdom": "^29.1.1",
"nx": "22.6.4",
"playwright": "^1.61.1",
"prettier": "^3.9.5",
"publint": "^0.3.21",
"sass-embedded": "^1.100.0",
"storybook": "^10.5.3",
"typescript": "~6.0.3",
"unplugin-dts": "^1.0.3",
"vite": "^8.1.5",
"vite-plugin-vue-devtools": "^8.1.5",
"vitest": "^4.1.10",
"vue-tsc": "^3.3.7"
},
"overrides": {
"storybook": "$storybook"
}
}