forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "@storybook/addon-storysource",
"version": "5.3.0-alpha.38",
"description": "Stories addon for storybook",
"keywords": [
"addon",
"storybook"
],
"homepage": "https://github.com/storybookjs/storybook/tree/master/addons/storysource",
"bugs": {
"url": "https://github.com/storybookjs/storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "addons/storysource"
},
"license": "MIT",
"files": [
"dist/**/*",
"docs/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"main": "dist/index.js",
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "5.3.0-alpha.38",
"@storybook/components": "5.3.0-alpha.38",
"@storybook/router": "5.3.0-alpha.38",
"@storybook/source-loader": "5.3.0-alpha.38",
"@storybook/theming": "5.3.0-alpha.38",
"core-js": "^3.0.1",
"estraverse": "^4.2.0",
"loader-utils": "^1.2.3",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react-syntax-highlighter": "^11.0.2",
"regenerator-runtime": "^0.13.3",
"util-deprecate": "^1.0.2"
},
"peerDependencies": {
"@storybook/source-loader": "*",
"react": "*"
},
"publishConfig": {
"access": "public"
}
}