forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "@storybook/addon-storyshots",
"version": "3.0.0-alpha.1",
"description": "StoryShots is a Jest Snapshot Testing Addon for Storybook.",
"repository": {
"type": "git",
"url": "https://github.com/storybooks/storybook.git"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prepublish": "babel ./src --out-dir ./dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"dependencies": {
"@storybook/addon-actions": "^3.0.0-alpha.1",
"@storybook/addon-links": "^3.0.0-alpha.1",
"@storybook/addons": "^3.0.0-alpha.0",
"@storybook/channels": "^3.0.0-alpha.0",
"@storybook/react": "^3.0.0-alpha.1",
"babel-runtime": "^6.23.0",
"prop-types": "^15.5.8",
"read-pkg-up": "^2.0.0"
},
"peerDependencies": {
"react": "*",
"react-test-renderer": "*"
}
}