This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.52 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-props",
"version": "3.0.4",
"description":
"React Storybook Addon to show component properties and stories into panels",
"repository": {
"type": "git",
"url": "https://github.com/marc-rutkowski/storybook-addon-props"
},
"dependencies": {
"@storybook/addon-actions": "^3.3.12",
"@storybook/addon-storyshots": "^3.3.12",
"@storybook/addons": "^3.3.12",
"@storybook/react": "^3.3.12",
"immutable": "4.0.0-rc.9",
"jsx-to-string": "^1.3.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-remarkable": "^1.1.3",
"react-syntax-highlighter": "^7.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"flow-bin": "^0.64.0",
"jest": "^22.1.4",
"jest-cli": "^22.1.4",
"react-test-renderer": "^16.2.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"@storybook/addons": "*"
},
"scripts": {
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublish": "npm run clear & babel -d ./ ./src",
"dev": "npm run clear & babel -d ./ ./src --watch",
"clear": "ls ./src | xargs rm -rf",
"deploy-storybook": "storybook-to-ghpages"
},
"keywords": ["react", "storybook", "addon"],
"author": "Marc Rutkowski",
"license": "ISC"
}