-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "@kadira/storybook",
"version": "1.38.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": "node scripts/prepublish.js",
"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'"
},
"dependencies": {
"@kadira/storybook-ui": "^2.4.0",
"airbnb-js-shims": "^1.0.0",
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.14",
"cjson": "^0.4.0",
"commander": "^2.9.0",
"es6-shim": "^0.35.1",
"express": "^4.13.3",
"json-stringify-safe": "^5.0.1",
"page-bus": "^3.0.1",
"qs": "^6.1.0",
"redbox-react": "^1.2.2",
"shelljs": "^0.6.0",
"stack-source-map": "^1.0.5",
"uuid": "^2.0.1",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.6.0",
"webpack-hot-middleware": "^2.10.0"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0",
"react-dom": "^0.14.7 || ^15.0.0"
},
"devDependencies": {
"@kadira/react-split-pane": "^1.4.0",
"react-modal": "^1.2.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"lodash.pick": "^4.2.0",
"deep-equal": "^1.0.1",
"babel-cli": "^6.3.14",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-runtime": "^6.3.14",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "^2.4.5",
"chai": "^3.5.0",
"mock-fs": "^3.8.0",
"nodemon": "^1.9.1",
"sinon": "^1.17.3",
"enzyme": "^2.2.0",
"expect": "^1.6.0",
"jsdom": "^8.4.0",
"react-addons-test-utils": "^15.0.1"
},
"main": "dist/client/index.js",
"engines": {
"npm": "^3.0.0"
},
"bin": {
"start-storybook": "./dist/server/index.js",
"build-storybook": "./dist/server/build.js",
"storybook-server": "./dist/server/index.js"
}
}