-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.95 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
{
"name": "root",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": "^22",
"npm": "<=0"
},
"scripts": {
"build": "pnpm build:tokens && pnpm build:charts && pnpm build:icons && pnpm build:components && pnpm build:fondue",
"build:charts": "pnpm --stream --filter {packages/charts} build",
"build:components": "pnpm --stream --filter {packages/components} build",
"build:fondue": "pnpm --stream --filter {packages/fondue} build",
"build:icons": "pnpm --stream --filter {packages/icons} build",
"build:tokens": "pnpm --stream --filter {packages/tokens} build",
"build:storybook": "pnpm build && pnpm build:storybook:packages && pnpm build:storybook:main",
"build:storybook:main": "pnpm --stream --filter {storybook-docs} build:storybook",
"build:storybook:packages": "pnpm --stream --parallel --filter {packages/*} build:storybook",
"ci:publish": "pnpm build && changeset publish",
"ci:version": "changeset version",
"lint": "pnpm --stream --filter {packages/*} --filter {storybook-docs} lint",
"storybook": "concurrently 'pnpm storybook:packages' 'pnpm storybook:main'",
"storybook:main": "wait-on http://localhost:6006 http://localhost:6007 http://localhost:6008 http://localhost:6009 && pnpm --stream --filter {storybook-docs} storybook",
"storybook:packages": "pnpm --parallel --filter {packages/*} storybook --no-open",
"typecheck": "pnpm --stream --filter {packages/*} --filter {storybook-docs} typecheck",
"changeset": "changeset",
"create:component": "pnpm --stream --filter {packages/components} create:component"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.0.1",
"glob": "^11.0.0",
"wait-on": "^8.0.1"
}
}