forked from UnivTexasArlington-Library/library_mobile_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.13 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
{
"name": "rncourse",
"version": "1.0.0",
"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 --watch --detectOpenHandles"
},
"dependencies": {
"@expo/ngrok": "^4.1.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-firebase/app": "^18.3.1",
"@react-native-firebase/in-app-messaging": "^18.3.1",
"@react-native-firebase/messaging": "^18.3.1",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/drawer": "^6.6.3",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@sentry/react-native": "^5.5.0",
"@shopify/flash-list": "1.4.3",
"@testing-library/react-native": "^12.2.2",
"axios": "^1.4.0",
"base-64": "^1.0.0",
"date-fns": "^2.30.0",
"expo": "^49.0.8",
"expo-application": "~5.3.0",
"expo-av": "~13.4.1",
"expo-constants": "~14.4.2",
"expo-device": "~5.4.0",
"expo-font": "^11.4.0",
"expo-linking": "~5.0.2",
"expo-location": "~16.1.0",
"expo-notifications": "~0.20.1",
"expo-screen-orientation": "~6.0.5",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "^0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.13",
"expo-video-player": "^2.2.0",
"jest": "^29.2.1",
"jest-expo": "^49.0.0",
"lottie-react-native": "5.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.47.0",
"react-native": "^0.72.4",
"react-native-animated-dots-carousel": "^1.0.2",
"react-native-animated-loader": "^1.0.0",
"react-native-calendars": "^1.1301.0",
"react-native-dropdown-picker": "^5.4.6",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "~2.12.0",
"react-native-maps": "1.7.1",
"react-native-modal": "^13.0.1",
"react-native-open-maps": "^0.4.3",
"react-native-reanimated": "~3.3.0",
"react-native-reanimated-carousel": "^3.5.1",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "^4.6.3",
"react-native-screens": "~3.22.0",
"react-native-table-component": "^1.2.2",
"react-native-web": "~0.19.6",
"react-test-renderer": "^18.2.0",
"sentry-expo": "~7.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@testing-library/jest-native": "^5.4.2",
"@types/jest": "^29.5.3"
},
"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)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"setupFiles": [
"./jest/setup.js"
]
},
"private": true
}