-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 4.04 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll",
"prestorybook": "rnstl",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"@apollo/react-hooks": "^4.0.0",
"@eva-design/eva": "^2.0.0",
"@expo/react-native-action-sheet": "^3.9.0",
"@expo/vector-icons": "^12.0.0",
"@react-native-async-storage/async-storage": "^1.13.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "5.11.2",
"@react-navigation/native": "~5.8.10",
"@react-navigation/stack": "~5.12.8",
"@ui-kitten/components": "^5.1.0",
"@ui-kitten/eva-icons": "^5.0.0",
"apollo-boost": "^0.4.9",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-ws": "^1.0.20",
"apollo-utilities": "^1.3.4",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"expo": "~41.0.1",
"expo-asset": "~8.3.1",
"expo-constants": "~10.1.3",
"expo-font": "~9.1.0",
"expo-linking": "~2.2.3",
"expo-splash-screen": "~0.10.2",
"expo-status-bar": "~1.0.4",
"expo-web-browser": "~9.1.0",
"firebase": "8.2.3",
"graphql": "^15.5.0",
"lottie-ios": "3.1.8",
"lottie-react-native": "3.5.0",
"moment": "^2.29.1",
"native-base": "^3.0.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-chart-kit": "^6.11.0",
"react-native-config": "^1.4.2",
"react-native-fast-image": "^8.3.4",
"react-native-fs": "^2.18.0",
"react-native-gesture-handler": "~1.10.2",
"react-native-gifted-chat": "^0.16.3",
"react-native-keyboard-aware-scroll-view": "^0.9.4",
"react-native-linear-gradient": "^2.5.6",
"react-native-permissions": "^3.0.3",
"react-native-radio-button": "^2.0.1",
"react-native-reanimated": "~2.1.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.0.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "12.1.0",
"react-native-swiper": "^1.6.0",
"react-native-typescript-transformer": "^1.2.13",
"react-native-web": "~0.13.12",
"react-native-webview": "11.2.3",
"react-redux": "^7.2.2",
"redux-persist": "^6.0.0",
"rn-fetch-blob": "^0.12.0",
"styled-components": "^5.3.0",
"styled-system": "^5.1.5",
"subscriptions-transport-ws": "^0.9.18"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@expo/webpack-config": "^0.14.0",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@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",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-redux": "^7.1.16",
"babel-loader": "^8.2.2",
"jest-expo": "~41.0.0",
"prettier": "2.1.2",
"react-native-storybook-loader": "^2.0.4",
"react-native-svg-transformer": "^0.14.3",
"typescript": "~4.0.0"
},
"private": true,
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src",
"./storybook"
],
"pattern": "**/*.stories.*",
"outputFile": "./storybook/storyLoader.js"
}
}
}