-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.93 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
{
"name": "voicepost",
"main": "expo-router/entry",
"version": "1.1.7",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"test:ci": "jest --ci",
"e2e": "maestro test maestro",
"lint": "expo lint",
"typecheck": "tsc --noEmit --noErrorTruncation",
"build:e2e:ios:local": "npx expo prebuild --platform ios && xcodebuild -workspace ios/VoicePost.xcworkspace -scheme VoicePost -configuration Release -sdk iphonesimulator -derivedDataPath ios/build CODE_SIGNING_ALLOWED=NO build",
"build:e2e:android:local": "npx expo prebuild --platform android && (cd android && ./gradlew assembleRelease)",
"e2e:ios": "wdio run e2e/wdio.ios.conf.ts"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"<rootDir>/jest-setup.js"
]
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"i18next"
]
}
}
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/slider": "5.1.2",
"@react-native-picker/picker": "2.11.4",
"@react-navigation/native": "^7.0.0",
"@sentry/react-native": "~7.11.0",
"expo": "^55.0.12",
"expo-asset": "~55.0.13",
"expo-audio": "~55.0.12",
"expo-auth-session": "~55.0.12",
"expo-build-properties": "~55.0.12",
"expo-clipboard": "~55.0.12",
"expo-constants": "~55.0.12",
"expo-crypto": "~55.0.13",
"expo-dev-client": "~55.0.23",
"expo-file-system": "~55.0.15",
"expo-font": "~55.0.6",
"expo-linking": "~55.0.11",
"expo-localization": "~55.0.12",
"expo-navigation-bar": "~55.0.11",
"expo-router": "~55.0.11",
"expo-secure-store": "~55.0.12",
"expo-splash-screen": "~55.0.16",
"expo-status-bar": "~55.0.5",
"expo-system-ui": "~55.0.14",
"expo-web-browser": "~55.0.13",
"i18next": "^24.2.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^15.4.1",
"react-native": "0.83.4",
"react-native-gesture-handler": "~2.30.0",
"react-native-progress": "^5.0.1",
"react-native-radio-buttons-group": "^3.1.0",
"react-native-reanimated": "4.2.1",
"react-native-root-toast": "^3.6.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-web": "^0.21.0",
"react-native-webview": "13.16.0",
"react-native-worklets": "0.7.2"
},
"devDependencies": {
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.12",
"@types/react": "~19.2.10",
"eslint": "^9.18.0",
"eslint-config-expo": "~55.0.0",
"jest": "^29.2.1",
"jest-expo": "~55.0.14",
"react-test-renderer": "^19.1.0",
"typescript": "~5.9.2"
},
"overrides": {
"react": "19.2.0",
"hermes-compiler": "250829098.0.4"
},
"private": true
}