-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.73 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
{
"name": "hightide-monorepo",
"private": true,
"keywords": [],
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.15.1",
"onFail": "download"
}
},
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"clean": "pnpm -r run clean && rm -rf node_modules",
"init": "pnpm -r run init",
"reset": "pnpm run clean && pnpm install && pnpm run init",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"dev": "pnpm -r run dev",
"storybook-web": "pnpm --filter @helpwave/hightide-utils run build && pnpm --filter @helpwave/hightide run build && pnpm --filter @helpwave/hightide run storybook",
"build-storybook-web": "pnpm --filter @helpwave/hightide-utils run build && pnpm --filter @helpwave/hightide run build && pnpm --filter @helpwave/hightide run build-storybook",
"sync-native-stories": "pnpm --filter @helpwave/hightide-native-web-storybook run sync-stories",
"storybook-native": "pnpm --filter @helpwave/hightide-utils run build && pnpm --filter @helpwave/hightide-design run build && pnpm --filter @helpwave/hightide-native run build && pnpm --filter @helpwave/hightide-native-storybook run storybook",
"storybook-native-web": "pnpm --filter @helpwave/hightide-utils run build && pnpm --filter @helpwave/hightide-design run build && pnpm --filter @helpwave/hightide-native run build && pnpm --filter @helpwave/hightide-native-web-storybook run storybook",
"build-storybook-native-web": "pnpm --filter @helpwave/hightide-utils run build && pnpm --filter @helpwave/hightide-design run build && pnpm --filter @helpwave/hightide-native run build && pnpm --filter @helpwave/hightide-native-web-storybook run build-storybook"
}
}