forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@kadira/storybook",
"version": "2.35.3",
"description": "React Storybook: Isolate React Component Development with Hot Reloading.",
"repository": {
"type": "git",
"url": "https://github.com/kadirahq/react-storybook.git"
},
"typings": "./config/storybook.d.ts",
"license": "MIT",
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js"
},
"scripts": {
"prepublish": "sh scripts/prepublish.sh",
"lint": "eslint src",
"lintfix": "eslint src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"dev": "DEV_BUILD=1 nodemon --watch src --exec 'npm run prepublish'",
"postpublish": "greenkeeper-postpublish"
},
"dependencies": {
"@kadira/react-split-pane": "^1.4.0",
"@kadira/storybook-addon-actions": "^1.0.2",
"@kadira/storybook-addon-links": "^1.0.0",
"@kadira/storybook-addons": "^1.5.0",
"@kadira/storybook-channel-postmsg": "^2.0.1",
"@kadira/storybook-ui": "^3.10.1",
"airbnb-js-shims": "^1.0.1",
"autoprefixer": "^6.3.7",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-docgen": "^1.4.2",
"babel-preset-react-app": "^1.0.0",
"babel-runtime": "^6.9.2",
"case-sensitive-paths-webpack-plugin": "^1.1.2",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"common-tags": "^1.3.1",
"configstore": "^2.0.0",
"css-loader": "^0.26.1",
"express": "^4.13.3",
"file-loader": "^0.9.0",
"find-cache-dir": "^0.1.1",
"json-loader": "^0.5.4",
"json-stringify-safe": "^5.0.1",
"json5": "^0.5.0",
"lodash.pick": "^4.2.0",
"postcss-loader": "1.1.0",
"qs": "^6.1.0",
"react-modal": "^1.2.0",
"redux": "^3.5.2",
"request": "^2.74.0",
"serve-favicon": "^2.3.0",
"shelljs": "^0.7.4",
"style-loader": "0.13.1",
"url-loader": "^0.5.7",
"uuid": "^2.0.3",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.0",
"webpack-hot-middleware": "^2.13.2"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"deep-equal": "^1.0.1",
"enzyme": "^2.2.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"expect": "^1.6.0",
"greenkeeper-postpublish": "^1.0.1",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"mock-fs": "^3.8.0",
"nodemon": "^1.9.1",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.0",
"sinon": "^1.17.3"
},
"main": "dist/client/index.js",
"bin": {
"start-storybook": "./dist/server/index.js",
"build-storybook": "./dist/server/build.js",
"storybook-server": "./dist/server/index.js"
}
}