forked from ShahilMangroliya/maps
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.88 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
{
"name": "RNMapboxGLExample",
"main": "expo/AppEntry.js",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "yarn react-native run-android",
"ios": "yarn react-native run-ios --simulator=\"iPhone SE (3rd generation)\"",
"web": "expo start -c --web",
"pod:install": "cd ios && pod install",
"start": "yarn react-native start",
"postinstall": "node ./scripts/set_access_token.js && patch-package",
"purge:android": "(cd android && ./gradlew --stop) && rm -rf ~/.gradle/caches/ android/app/build",
"purge:ios": "rm -rf ios/Pods/* ios/build ~/Library/Caches/CocoaPods ~/Library/Developer/Xcode/DerivedData && pod cache clean --all",
"purge:js": "rm -rf node_modules && yarn cache clean && watchman watch-del-all",
"purge": "yarn purge:js && yarn purge:android && yarn purge:ios",
"type:check": "yarn tsc --version && npx tsc --noEmit"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.5.0",
"@mapbox/mapbox-sdk": "^0.16.1",
"@react-native-async-storage/async-storage": "^2.1.1",
"@react-navigation/native": "^7.1.6",
"@react-navigation/native-stack": "^7.3.10",
"@rneui/base": "^4.0.0-rc.6",
"@rnmapbox/maps": "file:../",
"@turf/along": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/length": "^6.5.0",
"@turf/nearest-point-on-line": "6.5.0",
"@types/mapbox__geo-viewport": "^0.5.3",
"debounce": "^1.2.0",
"fbjs": "^3.0.0",
"moment": "^2.30.1",
"prop-types": "^15.8.1",
"react": "19.0.0",
"react-native": "0.79.1",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "4.10.0",
"react-native-vector-icons": "10.2.0"
},
"optionalDependencies": {
"@expo/metro-runtime": "3.2.1",
"@types/responselike": "1.0.0",
"expo": "^51.0.38",
"mapbox-gl": "^3.12.0",
"react-dom": "19.0.0",
"react-native-web": "~0.20.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "18.0.0",
"@react-native-community/cli-platform-android": "18.0.0",
"@react-native-community/cli-platform-ios": "18.0.0",
"@react-native/babel-preset": "0.79.1",
"@react-native/eslint-config": "0.79.1",
"@react-native/metro-config": "0.79.1",
"@react-native/typescript-config": "0.79.1",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.0.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.0",
"detox": "^20.12.1",
"eslint": "^8.19.0",
"glob-to-regexp": "^0.4.0",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"pod-install": "^0.3.9",
"prettier": "^2.8.8",
"react-test-renderer": "19.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}