forked from rnmapbox/maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.56 KB
/
package.json
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
95
96
97
98
{
"name": "RNMapboxGLExample",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --simulator=\"iPhone SE (3rd generation)\"",
"pod:install": "cd ios && pod install",
"start": "react-native start",
"postinstall": "node ./scripts/set_access_token.js && jetifier",
"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": "tsc --noEmit"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.5.0",
"@mapbox/mapbox-sdk": "^0.13.0",
"@react-navigation/compat": "^5.3.20",
"@react-navigation/native": "^6.0.11",
"@react-navigation/native-stack": "^6.7.0",
"@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.4.1",
"debounce": "^1.2.0",
"deprecated-react-native-prop-types": "^2.3.0",
"fbjs": "^3.0.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "18.0.0",
"react-native": "0.69.4",
"@rneui/base": "^4.0.0-rc.6",
"react-native-safe-area-context": "^4.3.3",
"react-native-screens": "^3.0.0",
"react-native-svg": "^12.1.0",
"react-native-vector-icons": "9.0.0"
},
"optionalDependencies": {
"expo": "46.0.0",
"mapbox-gl": "^2.9.2",
"react-dom": "^18.2.0",
"react-native-web": "0.18.7",
"@expo/webpack-config": "^0.17.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-typescript": "^7.12.17",
"@babel/runtime": "^7.12.5",
"babel-plugin-module-resolver": "^4.1.0",
"detox": "^19.1.0 <19.5.2 || >19.5.2",
"glob-to-regexp": "^0.4.0",
"jest": "^27.1.0",
"jest-circus": "^27.1.1",
"jetifier": "^2.0.0",
"metro-react-native-babel-preset": "^0.64.0",
"typescript": "^4.4.3"
},
"detox": {
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"apps": {
"ios": {
"type": "ios.app",
"build": "xcodebuild -quiet -workspace ios/RNMapboxGLExample.xcworkspace -configuration Release -scheme RNMapboxGLExample -sdk iphonesimulator -derivedDataPath ios/build -destination 'platform=iOS Simulator,name=iPhone SE (3rd generation)'",
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/RNMapboxGLExample.app"
},
"ios.debug": {
"type": "ios.app",
"build": "FORCE_BUNDLING=1 xcodebuild -quiet -workspace ios/RNMapboxGLExample.xcworkspace -configuration Debug -scheme RNMapboxGLExample GCC_PREPROCESSOR_DEFINITIONS='$GCC_PREPROCESSOR_DEFINITIONS DEBUG_RCT_BUNDLE=1' -sdk iphonesimulator -derivedDataPath ios/build -destination 'platform=iOS Simulator,name=iPhone SE (3rd generation)'",
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/RNMapboxGLExample.app"
}
},
"devices": {
"simulator": {
"type": "ios.simulator",
"device": {
"type": "iPhone SE (3rd generation)"
}
}
},
"configurations": {
"ios": {
"device": "simulator",
"app": "ios"
},
"ios.debug": {
"device": "simulator",
"app": "ios.debug"
}
}
}
}