-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.55 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.55 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
{
"name": "optifyx-app",
"license": "GPL-2.0-only",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest"
},
"dependencies": {
"@expo/metro-runtime": "~5.0.4",
"@expo/vector-icons": "^14.1.0",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/checkbox": "^0.5.20",
"@react-navigation/bottom-tabs": "^7.3.14",
"@react-navigation/native": "^7.1.10",
"@react-navigation/stack": "^7.3.2",
"expo": "^53.0.11",
"expo-av": "~15.1.5",
"expo-barcode-scanner": "^13.0.1",
"expo-checkbox": "~4.1.4",
"expo-network": "~7.1.5",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.8",
"lucide-react-native": "^0.511.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.3",
"react-native-camera": "^4.2.1",
"react-native-chart-kit": "^6.12.0",
"react-native-confetti-cannon": "^1.5.2",
"react-native-gesture-handler": "~2.24.0",
"react-native-maps": "1.20.1",
"react-native-qrcode-scanner": "^1.5.5",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-sound": "^0.11.1",
"react-native-svg": "15.11.2",
"react-native-vector-icons": "^10.2.0",
"react-native-web": "^0.20.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.2.0",
"jest": "~29.7.0",
"jest-expo": "^53.0.7"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native|react-clone-referenced-element|@react-navigation|expo(nent)?|@expo(nent)?/.*|@unimodules|unimodules|sentry-expo|native-base|react-native-svg))"
]
},
"private": true,
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@react-native-community/checkbox",
"react-native-camera",
"react-native-chart-kit",
"react-native-confetti-cannon",
"react-native-qrcode-scanner",
"expo-barcode-scanner"
],
"listUnknownPackages": false
}
}
}
}