-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.31 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
{
"name": "learngasy",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "yarn run prestorybook && react-native start",
"test": "jest",
"lint": "eslint .",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook",
"prestorybook": "rnstl"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/picker": "^1.8.1",
"@react-native-picker/picker": "^1.16.0",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.4",
"i": "^0.3.6",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-dev-menu": "^4.0.2",
"react-native-dropdown-picker": "^5.1.15",
"react-native-elements": "^3.4.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-get-random-values": "^1.7.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.1.1",
"react-native-select-plus": "^0.1.10",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^0.14.3",
"react-native-uuid": "^2.0.1",
"react-native-vector-icons": "^8.1.0",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^6.2.8",
"@storybook/addon-links": "^5.3",
"@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-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-dom": "17.0.1",
"react-native-storybook-loader": "^2.0.2",
"react-test-renderer": "17.0.1"
},
"jest": {
"preset": "react-native"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src",
"./storybook/stories",
"./packages"
],
"pattern": "**/*.stories.js",
"outputFile": "./storybook/storyLoader.js"
}
}
}