-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.47 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
{
"private": true,
"version": "1.1.0",
"scripts": {
"start": "expo start -c",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test:unit": "jest test/unit.test.js",
"test:e2e": "jest test/e2e.test.js --testTimeout=100000 --silent"
},
"dependencies": {
"@react-native-masked-view/masked-view": "0.2.6",
"@react-navigation/drawer": "^6.1.8",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"axios": "^0.24.0",
"babel-plugin-inline-dotenv": "^1.6.0",
"child-process": "^1.0.2",
"expo": "^44.0.0",
"expo-dev-client": "~0.7.2",
"expo-font": "~10.0.4",
"expo-linear-gradient": "~11.0.0",
"expo-navigation-bar": "~1.1.1",
"expo-secure-store": "~11.1.0",
"expo-splash-screen": "~0.14.0",
"expo-status-bar": "~1.2.0",
"expo-system-ui": "~1.1.0",
"lottie-react-native": "5.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-app-intro-slider": "^4.0.4",
"react-native-calendars": "^1.1274.0",
"react-native-easy-grid": "^0.2.2",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "~2.1.0",
"react-native-get-random-values": "~1.7.0",
"react-native-gifted-chat": "^0.16.3",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-paper": "^4.9.2",
"react-native-reanimated": "~2.3.1",
"react-native-render-html": "^6.2.0",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-shared-element": "0.8.3",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "12.1.1",
"react-native-web": "0.17.1",
"react-native-webview": "11.15.0",
"react-navigation": "^4.4.4",
"react-navigation-shared-element": "^3.1.3",
"react-navigation-stack": "^2.10.4",
"socket.io-client": "^4.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@testing-library/react-native": "^9.0.0",
"jest": "^26.6.3",
"jest-expo": "^44.0.1",
"nock": "^13.2.1"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./test/jest-setup.js"
],
"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)"
]
}
}