-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.98 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
{
"name": "root",
"private": true,
"type": "module",
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916",
"engines": {
"node": "^24",
"npm": "<=0"
},
"scripts": {
"build": "pnpm build:charts && pnpm build:icons && pnpm build:components && pnpm build:rte && pnpm build:sdk && pnpm build:fondue",
"build:charts": "pnpm --stream --filter {packages/charts} build",
"build:components": "pnpm --stream --filter {packages/components} build",
"build:sdk": "pnpm --stream --filter {packages/sdk} build",
"build:fondue": "pnpm --stream --filter {packages/fondue} build",
"build:icons": "pnpm --stream --filter {packages/icons} build",
"build:rte": "pnpm --stream --filter {packages/rte} 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 build:icons && pnpm build:components && pnpm build:sdk && pnpm --stream --filter {storybook-docs} build:storybook",
"build:storybook:icons": "pnpm build:icons && pnpm --stream --filter {packages/icons} build:storybook",
"build:storybook:components": "pnpm build:icons && pnpm --stream --filter {packages/components} build:storybook",
"build:storybook:fondue": "pnpm build:icons && pnpm --stream --filter {packages/fondue} build:storybook",
"build:storybook:tokens": "pnpm build:icons && pnpm build:components && pnpm --stream --filter {packages/tokens} build:storybook",
"build:storybook:charts": "pnpm --stream --filter {packages/charts} build:storybook",
"build:storybook:rte": "pnpm build:icons && pnpm build:components && pnpm --stream --filter {packages/rte} build:storybook",
"lint": "pnpm --stream --filter {packages/*} --filter {storybook-docs} lint",
"storybook": "concurrently 'pnpm storybook:packages' 'pnpm storybook:main'",
"storybook:main": "wait-on http://localhost:6005 http://localhost:6006 http://localhost:6007 http://localhost:6008 http://localhost:6009 http://localhost:6011 && 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",
"release": "pnpm build && changeset tag && pnpm publish -r --access=public",
"update": "taze -r -I major",
"create:component": "pnpm --stream --filter {packages/components} create:component"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"glob": "^13.0.6",
"taze": "^19.11.0",
"wait-on": "^9.0.10"
}
}