-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.45 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.45 KB
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
{
"name": "mapactionapp",
"version": "1.0.0",
"main": "expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"migrate-db": "npx drizzle-kit generate",
"test": "jest --coverage --coverageReporters='text-summary' --coverageReporters='json-summary' --coverageReporters='text' --coverageReporters='lcov'"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.3.1",
"@react-native-community/slider": "^4.5.3",
"@react-native-picker/picker": "^2.9.0",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/drawer": "^6.7.2",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"axios": "^1.7.3",
"babel-plugin-inline-import": "^3.0.0",
"drizzle-orm": "^0.33.0",
"expo": "^51.0.34",
"expo-apple-authentication": "^6.4.2",
"expo-av": "^14.0.7",
"expo-background-fetch": "~12.0.1",
"expo-camera": "~15.0.16",
"expo-dev-client": "~4.0.28",
"expo-device": "~6.0.2",
"expo-file-system": "^17.0.1",
"expo-image-picker": "~15.0.7",
"expo-linear-gradient": "^13.0.2",
"expo-linking": "^6.3.1",
"expo-location": "~17.0.1",
"expo-notifications": "~0.28.19",
"expo-splash-screen": "~0.27.6",
"expo-sqlite": "^14.0.6",
"expo-status-bar": "~1.12.1",
"expo-task-manager": "~11.8.2",
"jwt-decode": "^4.0.0",
"moment": "^2.30.1",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-app-auth": "^8.0.0",
"react-native-app-intro-slider": "^4.0.4",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-markdown-display": "^7.0.2",
"react-native-progress": "^5.0.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-sqlite-storage": "^6.0.1",
"react-native-svg": "^15.8.0",
"react-native-toast-message": "^2.2.1",
"react-native-vector-icons": "^10.1.0",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^3.1.0",
"typescript": "^5.6.3",
"url-parse": "^1.5.10",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.7.2",
"@types/jest": "^29.5.13",
"drizzle-kit": "^0.24.2",
"jest": "^29.7.0",
"jest-expo": "^51.0.4",
"redux-mock-store": "^1.5.5"
},
"private": true,
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?|react-redux|@react-redux)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@sentry/react-native|native-base|react-native-svg)"
],
"roots": [
"<rootDir>/src/tests"
],
"collectCoverage": true,
"coverageReporters": [
"text",
"text-summary",
"json-summary",
"lcov"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/expo-env.d.ts",
"!**/.expo/**"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}