generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 2.73 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@codesandbox/storybook-addon",
"version": "0.2.0",
"description": "CSB",
"keywords": [
"storybook-addons"
],
"repository": {
"type": "git",
"url": "github.com"
},
"type": "module",
"license": "Apache-2.0",
"author": "CodeSandbox <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./preset": "./dist/preset.cjs",
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"start": "pnpm run build && pnpm run storybook",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsup",
"build:watch": "npm run build -- --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "zx scripts/prepublish-checks.js && npm run build",
"eject-ts": "zx scripts/eject-typescript.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@radix-ui/themes": "^2.0.3",
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/blocks": "^7.6.6",
"@storybook/core-events": "^7.6.6",
"@storybook/manager": "^7.6.6",
"@storybook/manager-api": "^7.6.6",
"@storybook/preview": "^7.6.6",
"@storybook/preview-api": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/react-vite": "^7.6.6",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.6",
"@storybook/types": "^7.6.6",
"@types/node": "^18.15.0",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"boxen": "^7.1.1",
"dedent": "^1.5.1",
"npm-run-all": "^4.1.5",
"prompts": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"storybook": "^7.6.6",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.1.2",
"zx": "^7.2.3"
},
"publishConfig": {
"access": "public"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.tsx"
],
"nodeEntries": [
"src/preset.ts"
]
},
"storybook": {
"displayName": "CodeSandbox",
"supportedFrameworks": [
"react"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"dependencies": {
"@storybook/addon-docs": "^7.6.17",
"@storybook/addon-storysource": "^7.6.17",
"@storybook/docs-tools": "^7.6.17",
"@storybook/icons": "^1.2.9",
"prettier": "^3.2.5"
}
}