-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.63 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.63 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
{
"name": "secure-qr-link-scanner",
"version": "1.2.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@react-native-ml-kit/barcode-scanning"
]
}
}
},
"dependencies": {
"@bacons/apple-targets": "^3.0.6",
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/netinfo": "11.4.1",
"@react-native-ml-kit/barcode-scanning": "^2.0.0",
"@react-navigation/native": "^7.1.18",
"@react-navigation/native-stack": "^7.0.0",
"expo": "~54.0.30",
"expo-asset": "^12.0.9",
"expo-blur": "~15.0.8",
"expo-build-properties": "~1.0.10",
"expo-camera": "~17.0.10",
"expo-clipboard": "~8.0.8",
"expo-dev-client": "~6.0.20",
"expo-file-system": "~19.0.17",
"expo-font": "~14.0.9",
"expo-haptics": "~15.0.8",
"expo-image-manipulator": "^14.0.8",
"expo-image-picker": "~17.0.10",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "~8.0.11",
"expo-localization": "^17.0.8",
"expo-mail-composer": "~15.0.8",
"expo-media-library": "~18.2.1",
"expo-quick-actions": "^6.0.0",
"expo-secure-store": "~15.0.8",
"expo-sharing": "~14.0.8",
"expo-status-bar": "~3.0.9",
"expo-tracking-transparency": "~6.0.8",
"i18next": "^25.6.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^16.2.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-google-mobile-ads": "^16.0.0",
"react-native-in-app-review": "^4.4.2",
"react-native-purchases": "^9.6.14",
"react-native-purchases-ui": "^9.6.14",
"react-native-qrcode-svg": "^6.3.21",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-view-shot": "^4.0.3",
"react-native-svg-barcode": "^0.1.1",
"react-native-web": "^0.21.0",
"react-native-webview": "13.15.0",
"react-native-worklets": "0.5.1",
"reanimated-color-picker": "^4.2.0"
},
"overrides": {
"expo-image-loader": "6.0.0"
},
"private": true,
"devDependencies": {
"@react-native-community/cli": "latest",
"babel-preset-expo": "~54.0.0",
"jest": "~29.7.0",
"metro-react-native-babel-preset": "^0.77.0"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jest.setup.js"
],
"testEnvironment": "node"
}
}