-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.58 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
{
"name": "clever-driver-app",
"version": "1.0.0",
"private": true,
"main": "index.ts",
"scripts": {
"postinstall": "node scripts/patch-expo-location-notification.mjs",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"lint": "expo lint",
"typecheck": "tsc --noEmit",
"test": "node scripts/run-tests.mjs",
"check:native-release": "tsx src/release/preflight/nativeReleasePreflightCli.ts",
"release:evidence:seed": "tsx src/release/evidence/releaseEvidenceSeedCli.ts",
"release:evidence:verify": "tsx src/release/evidence/releaseEvidenceVerifierCli.ts",
"check:workspace": "npm run check:source-layout && npm run typecheck && npm run test",
"build": "npm run build:android && npm run build:ios",
"build:android": "expo export -p android --output-dir dist/android",
"prebuild:android:distribution": "node scripts/verify-distribution-source.mjs",
"build:android:distribution": "cd android && ./gradlew app:assembleRelease -PreactNativeArchitectures=armeabi-v7a,arm64-v8a -Pandroid.enableMinifyInReleaseBuilds=true -Pandroid.enableShrinkResourcesInReleaseBuilds=true -Pexpo.useLegacyPackaging=true",
"build:ios": "expo export -p ios --output-dir dist/ios",
"check:source-layout": "tsx src/release/preflight/sourceLayoutPreflightCli.ts"
},
"dependencies": {
"@expo/vector-icons": "^15.0.2",
"@maplibre/maplibre-react-native": "^11.3.4",
"@react-native-async-storage/async-storage": "2.2.0",
"expo": "~56.0.16",
"expo-camera": "~56.0.8",
"expo-dev-client": "~56.0.23",
"expo-font": "~56.0.7",
"expo-image-picker": "~56.0.21",
"expo-location": "~56.0.21",
"expo-network": "~56.0.5",
"expo-notifications": "~56.0.21",
"expo-secure-store": "~56.0.4",
"expo-speech": "~56.0.3",
"expo-status-bar": "~56.0.4",
"expo-task-manager": "~56.0.22",
"libphonenumber-js": "1.13.6",
"react": "19.2.3",
"react-native": "0.85.3",
"react-native-gesture-handler": "~2.31.1",
"react-native-reanimated": "4.3.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-worklets": "0.8.3"
},
"devDependencies": {
"@types/node": "^20.19.43",
"@types/react": "~19.2.14",
"eslint": "^9.0.0",
"eslint-config-expo": "~56.0.4",
"tsx": "^4.22.4",
"typescript": "~6.0.3"
},
"engines": {
"node": ">=20.19.4"
},
"overrides": {
"postcss": "8.5.10",
"uuid": "11.1.1",
"ws": "8.21.0",
"shell-quote": "1.10.0"
},
"expo": {
"doctor": {
"appConfigFieldsNotSyncedCheck": {
"enabled": false
}
}
}
}