-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
{
"name": "@bhc/rn-picker",
"version": "0.0.14",
"description": "Basic picker for react native",
"main": "src/Picker.js",
"keywords": [
"android",
"ios",
"react",
"native",
"react-native",
"native-modules",
"react-component",
"picker"
],
"license": "MIT",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@storybook/addon-actions": "^5.3.21",
"@storybook/addon-knobs": "^5.3.21",
"@storybook/addon-links": "^5.3.21",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"babel-loader": "^8.2.5",
"babel-preset-expo": "^9.0.2",
"expo": "^44.0.6",
"jest": "^26.6.3",
"jest-expo": "^44.0.1",
"react-test-renderer": "17"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-native": "^0.64.0"
},
"private": false,
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/BHC-IT/rn-picker.git"
},
"dependencies": {
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
}
}