forked from rnmapbox/maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.16 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.16 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
{
"name": "@rnmapbox/maps-example",
"main": "index.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",
"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 && yarn tsc --noEmit",
"type:check:example:todo": "yarn tsc --noEmit -p ./tsconfig.relaxed.json"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.5.0",
"@mapbox/mapbox-sdk": "^0.16.1",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-navigation/native": "^7.1.17",
"@react-navigation/native-stack": "^7.3.25",
"@rneui/base": "4.0.0-rc.8",
"@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": "^2.2.0",
"fbjs": "^3.0.5",
"lodash.isequal": "^4.5.0",
"moment": "^2.30.1",
"prop-types": "^15.8.1",
"react": "19.1.0",
"react-native": "0.81.1",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "^4.15.2",
"react-native-vector-icons": "^10.3.0"
},
"optionalDependencies": {
"@expo/metro-runtime": "~6.1.2",
"@types/responselike": "1.0.3",
"expo": "~54.0.10",
"mapbox-gl": "^3.14.0",
"react-dom": "19.1.0",
"react-native-web": "~0.21.0"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/runtime": "^7.28.3",
"@react-native-community/cli": "^20.0.1",
"@react-native-community/cli-platform-android": "^20.0.1",
"@react-native-community/cli-platform-ios": "^20.0.1",
"@react-native/babel-preset": "^0.81.1",
"@react-native/eslint-config": "^0.81.1",
"@react-native/metro-config": "^0.81.1",
"@react-native/typescript-config": "^0.81.1",
"@types/lodash.isequal": "^4.5.8",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.1.10",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^30.1.2",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"detox": "^20.40.2",
"eslint": "^8.19.0",
"eslint-plugin-react-hooks": "latest",
"glob-to-regexp": "^0.4.1",
"jest": "^30.0.5",
"metro-config": "^0.83.2",
"pod-install": "^1.0.1",
"prettier": "^2.8.8",
"react-native-builder-bob": "^0.40.13",
"react-native-monorepo-config": "^0.1.9",
"react-test-renderer": "19.1.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}