forked from spacedriveapp/spaceui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.6 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
47
48
49
50
51
52
53
{
"name": "@spacedrive/monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
".storybook"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "bun run typecheck",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"publish": "turbo run build && changeset publish",
"link": "./scripts/link-packages.sh",
"unlink": "./scripts/unlink-packages.sh",
"watch": "./scripts/build-watch.sh",
"storybook": "cd .storybook && bun run dev",
"storybook:build": "cd .storybook && bun run build",
"storybook:typecheck": "cd .storybook && bun run typecheck",
"showcase": "cd examples/showcase && bun run dev",
"showcase:build": "cd examples/showcase && bun run build"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@chromatic-com/storybook": "^5.1.1",
"@storybook/addon-essentials": "8.6.18",
"@storybook/addon-interactions": "8.6.18",
"@storybook/addon-onboarding": "8.6.18",
"@storybook/addon-themes": "8.6.18",
"@storybook/blocks": "8.6.18",
"@storybook/react": "8.6.18",
"@storybook/react-vite": "8.6.18",
"@storybook/test": "8.6.18",
"@storybook/theming": "8.6.18",
"storybook": "8.6.18",
"turbo": "^2.0.0",
"typescript": "^5.4.0"
},
"packageManager": "bun@1.1.0",
"engines": {
"node": ">=18"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}