-
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.08 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.08 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": "0.1.0",
"private": true,
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"prepare:firebase:android": "node scripts/prepare-driver-firebase.mjs",
"ios": "expo run:ios",
"lint": "expo lint",
"typecheck": "tsc --noEmit",
"test": "node scripts/run-tests.mjs",
"check:workspace": "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",
"build:ios": "expo export -p ios --output-dir dist/ios",
"release:android:drive": "bash scripts/publish-android-drive-release.sh"
},
"dependencies": {
"@maplibre/maplibre-react-native": "11.3.4",
"@react-native-async-storage/async-storage": "2.2.0",
"expo": "~56.0.19",
"expo-application": "~56.0.3",
"expo-clipboard": "~56.0.4",
"expo-file-system": "~56.0.9",
"expo-image-picker": "~56.0.23",
"expo-linking": "~56.0.16",
"expo-notifications": "~56.0.23",
"expo-secure-store": "~56.0.4",
"expo-status-bar": "~56.0.4",
"expo-symbols": "~56.0.7",
"libphonenumber-js": "1.13.6",
"react": "19.2.3",
"react-native": "0.85.3",
"react-native-gesture-handler": "~2.31.1",
"react-native-keyboard-controller": "1.21.6",
"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": {
"brace-expansion": "5.0.8",
"postcss": "8.5.23",
"minimatch@10.2.5": {
"brace-expansion": "5.0.8"
},
"uuid": "11.1.1",
"ws": "8.21.0",
"shell-quote": "1.10.0"
},
"expo": {
"autolinking": {
"nativeModulesDir": "./modules"
},
"doctor": {
"appConfigFieldsNotSyncedCheck": {
"enabled": false
}
}
}
}