-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "evergreen-ui",
"repository": "https://github.com/evergreen-ci/ui",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"scripts": {
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"codegen": "for app in spruce parsley; do yarn workspace $app run codegen; done",
"prepare": "husky",
"storybook": "concurrently \"yarn workspace spruce run storybook --no-open\" \"yarn workspace parsley run storybook --no-open\" \"yarn workspace @evg-ui/lib run storybook --no-open\" \"sleep 5 && storybook dev\"",
"test": "vitest --typecheck=false --exclude=./**/snapshot.test.ts"
},
"resolutions": {
"@testing-library/dom": "10.1.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"jackspeak": "2.1.1"
},
"devDependencies": {
"@evg-ui/storybook-addon": "*",
"@storybook/react-vite": "8.4.7",
"concurrently": "8.2.2",
"husky": "9.1.7",
"lint-staged": "15.2.2",
"storybook": "8.4.7",
"vitest": "2.0.5"
}
}