-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "@kadira/storybook-addon-hello",
"version": "1.0.5",
"description": "Hello World addon for storybook",
"main": "preview.js",
"scripts": {
"prepublish": "BABEL_ENV=production node .scripts/npm-prepublish.js",
"storybook": "start-storybook -p 9001",
"test": "jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kadirahq/storybook-addon-hello.git"
},
"keywords": [
"storybook"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kadirahq/storybook-addon-hello/issues"
},
"homepage": "https://github.com/kadirahq/storybook-addon-hello#readme",
"devDependencies": {
"@kadira/storybook": "^2.20.1",
"babel-cli": "^6.14.0",
"babel-jest": "^15.0.0",
"babel-preset-react-app": "^0.2.1",
"jest": "^16.0.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"shelljs": "^0.7.4"
},
"peerDependencies": {
"@kadira/storybook-addons": "^1.5.0",
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
}
}