-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "@storybook/addon-ondevice-knobs",
"version": "5.3.0-alpha.33",
"description": "Display storybook story knobs on your deviced.",
"keywords": [
"addon",
"knobs",
"ondevice",
"react-native",
"storybook"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "addons/ondevice-knobs"
},
"license": "MIT",
"files": [
"dist/**/*",
"docs/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"main": "dist/index.js",
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "5.3.0-alpha.33",
"@storybook/core-events": "5.3.0-alpha.33",
"core-js": "^3.0.1",
"deep-equal": "^1.0.1",
"prop-types": "^15.7.2",
"react-native-color-picker": "^0.4.0",
"react-native-modal-datetime-picker": "^7.4.2",
"react-native-modal-selector": "^1.0.2",
"react-native-switch": "^1.5.0"
},
"peerDependencies": {
"@storybook/addon-knobs": "5.2.0-beta.13",
"react": "*",
"react-native": "*"
},
"publishConfig": {
"access": "public"
}
}