forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.41 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
{
"name": "@storybook/react-native",
"private": true,
"version": "5.0.11",
"description": "A better way to develop React Native Components for your app",
"keywords": [
"react",
"react-native",
"storybook"
],
"homepage": "https://github.com/storybooks/storybook/tree/master/app/react-native",
"bugs": {
"url": "https://github.com/storybooks/storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybooks/storybook.git"
},
"license": "MIT",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"bin": {
"storybook": "dist/bin/storybook.js"
},
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "5.0.11",
"@storybook/channel-websocket": "5.0.11",
"@storybook/channels": "5.0.11",
"@storybook/core": "5.0.11",
"@storybook/core-events": "5.0.11",
"@storybook/ui": "5.0.11",
"babel-loader": "^8.0.4",
"babel-plugin-macros": "^2.4.5",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.0 || 0.6.0-alpha.5",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"commander": "^2.19.0",
"core-js": "^2.6.5",
"dotenv-webpack": "^1.7.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"find-cache-dir": "^2.0.0",
"global": "^4.3.2",
"html-webpack-plugin": "^4.0.0-beta.2",
"json5": "^2.1.0",
"lazy-universal-dotenv": "^2.0.0",
"prop-types": "^15.6.2",
"raw-loader": "^1.0.0",
"react-dev-utils": "^7.0.1",
"react-native-swipe-gestures": "^1.0.2",
"shelljs": "^0.8.2",
"url-parse": "^1.4.3",
"uuid": "^3.3.2",
"webpack": "^4.29.0",
"webpack-dev-middleware": "^3.5.1",
"webpack-hot-middleware": "^2.24.3",
"ws": "^6.1.3"
},
"devDependencies": {
"react-native": "^0.52.2"
},
"peerDependencies": {
"babel-core": "^6.26.0 || ^7.0.0-0 || ^7.0.0-bridge.0",
"babel-runtime": ">=6.0.0",
"react": "*",
"react-native": ">=0.51.0"
},
"publishConfig": {
"access": "public"
}
}