-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.86 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
54
55
56
57
58
59
{
"name": "storybook-addon-redux-listener",
"version": "0.1.7",
"description": "Storybook addon for listening to Redux events. Events that are triggered show up in a new panel in Storybook.",
"main": "dist/index.js",
"homepage": "https://github.com/gregorskii/storybook-addon-redux-listener",
"repository": {
"type": "git",
"url": "https://github.com/gregorskii/storybook-addon-redux-listener.git"
},
"bugs": {
"url": "https://github.com/gregorskii/storybook-addon-redux-listener/issues",
"email": "[email protected]"
},
"keywords": [
"react/storybook",
"react",
"storybook",
"redux"
],
"contributors": [
{
"name": "Greg Parsons",
"github": "gregorskii"
}
],
"scripts": {
"eslint": "eslint --ext .js,.jsx ./src",
"clean": "rm -rf ./dist",
"babel": "babel src --out-dir ./dist",
"build": "npm run clean && npm run eslint && npm run babel",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "gregorskii",
"license": "MIT",
"dependencies": {
"redux-listener-middleware": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.5.0",
"babel-core": "^6.5.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.10.0"
},
"peerDependencies": {
"@storybook/addons": "^3.0.0",
"prop-types": "^15.5.0",
"react": "^0.14 || ^15.5.0"
}
}