-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.92 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
{
"name": "@a110/storybook-expand-all",
"storybook": {
"displayName": "Expand-All",
"supportedFrameworks": [
"react",
"vue",
"angular",
"web-components",
"ember",
"html",
"svelte",
"preact",
"aurelia",
"marionette",
"react-native"
],
"icon": "https://i.imgur.com/0AnnsTA.png"
},
"version": "1.0.0",
"description": "Expand all sidebar items at Storybook start",
"main": "dist/preset.js",
"scripts": {
"clean": "rimraf dist node_modules/.cache storybook-static",
"build": "babel ./src --out-dir ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"serve": "serve storybook-static"
},
"repository": {
"type": "git",
"url": "https://github.com/llaenowyd/storybook-expand-all"
},
"keywords": [
"storybook",
"addons",
"storybook-addons",
"appearance",
"layout"
],
"author": {
"name": "Collin Monahan",
"email": "llaenowyd@gmail.com"
},
"license": "MIT",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"bugs": {
"url": "https://github.com/llaenowyd/storybook-expand-all/issues"
},
"homepage": "https://github.com/llaenowyd/storybook-expand-all#readme",
"externals": [
"react",
"react-dom",
"@storybook/addons"
],
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"@storybook/addon-actions": "^6.5.3",
"@storybook/addon-essentials": "^6.5.3",
"@storybook/addon-interactions": "^6.5.3",
"@storybook/addon-links": "^6.5.3",
"@storybook/builder-webpack4": "^6.5.3",
"@storybook/manager-webpack4": "^6.5.3",
"@storybook/react": "^6.5.3",
"@storybook/testing-library": "^0.0.11",
"babel-loader": "^8.2.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"serve": "^14.0.1"
}
}