forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "@storybook/addon-actions",
"version": "5.3.0-alpha.45",
"description": "Action Logger addon for storybook",
"keywords": [
"storybook"
],
"homepage": "https://github.com/storybookjs/storybook/tree/master/addons/actions",
"bugs": {
"url": "https://github.com/storybookjs/storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "addons/actions"
},
"license": "MIT",
"files": [
"dist/**/*",
"docs/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "5.3.0-alpha.45",
"@storybook/api": "5.3.0-alpha.45",
"@storybook/client-api": "5.3.0-alpha.45",
"@storybook/components": "5.3.0-alpha.45",
"@storybook/core-events": "5.3.0-alpha.45",
"@storybook/theming": "5.3.0-alpha.45",
"core-js": "^3.0.1",
"fast-deep-equal": "^2.0.1",
"global": "^4.3.2",
"polished": "^3.3.1",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-inspector": "^4.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.129",
"@types/uuid": "^3.4.4"
},
"publishConfig": {
"access": "public"
}
}