-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
59 lines (59 loc) · 2.33 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
{
"name": "root",
"version": "0.0.0",
"packageManager": "yarn@4.2.2",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"plugins/*"
],
"scripts": {
"test": "vitest",
"test:cli": "yarn workspace @digdir/designsystemet test --verbose",
"test:storybook": "yarn workspace @designsystemet/storybook run-and-test-storybook",
"test:coverage": "vitest run --coverage",
"storybook": "yarn workspace @designsystemet/storybook dev",
"storefront": "yarn workspace storefront dev",
"theme": "yarn workspace theme dev",
"figma-plugin": "yarn workspace figma-plugin dev",
"build": "yarn workspaces foreach -Ap --topological-dev --no-private run build",
"build:all": "yarn workspaces foreach -A --topological-dev run build",
"build:theme": "yarn workspace theme build",
"build:figma-plugin": "yarn workspace figma-plugin build",
"build:react": "yarn workspace @digdir/designsystemet-react build",
"build:tokens": "yarn workspace @digdir/designsystemet build:tokens",
"build:css": "yarn workspace @digdir/designsystemet-css build",
"build:cli": "yarn workspace @digdir/designsystemet build",
"build:storybook": "yarn workspace @designsystemet/storybook build",
"build:storefront": "yarn workspace storefront build",
"start:storefront": "yarn workspace storefront start",
"types": "yarn workspaces foreach -Ap --topological-dev --no-private run types",
"types:react": "yarn workspace @digdir/designsystemet-react types",
"types:storefront": "yarn workspace storefront types",
"version-packages": "changeset version",
"publish": "yarn build && changeset publish",
"chromatic": "yarn workspace @designsystemet/storybook chromatic"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^22.1.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/expect": "^2.0.5",
"chromatic": "^11.11.0",
"copyfiles": "^2.4.1",
"storybook-addon-pseudo-states": "^4.0.2",
"tsconfck": "^3.1.4",
"typescript": "^5.5.4",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.3.6",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18.12.0"
}
}