forked from googlemaps/react-native-navigation-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.51 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
{
"name": "react-native-navigation-sdk-sample",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"android-release": "react-native run-android --mode release",
"ios": "react-native run-ios",
"ios-release": "react-native run-ios --mode release",
"lint": "eslint .",
"test": "jest",
"build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd ios && xcodebuild -workspace SampleApp.xcworkspace -scheme SampleApp -configuration Debug -sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO",
"detox:build:ios-debug": "detox build --configuration ios.sim.debug",
"detox:build:ios-release": "detox build --configuration ios.sim.release",
"detox:build:android-debug": "detox build --configuration android.emu.debug",
"detox:build:android-release": "detox build --configuration android.emu.release",
"detox:test:ios-debug": "detox test --configuration ios.sim.debug",
"detox:test:ios-release": "detox test --configuration ios.sim.release",
"detox:test:android-debug": "detox test --configuration android.emu.debug",
"detox:test:android-release": "detox test --configuration android.emu.release"
},
"dependencies": {
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"react": "18.3.1",
"react-native": "0.76.2",
"react-native-gesture-handler": "^2.21.0",
"react-native-permissions": "^5.1.0",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "^3.35.0",
"react-native-select-dropdown": "^4.0.1",
"react-native-snackbar": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@react-native-community/cli": "15.1.2",
"@react-native-community/cli-platform-android": "15.1.2",
"@react-native-community/cli-platform-ios": "15.1.2",
"@react-native/babel-preset": "0.76.2",
"@react-native/metro-config": "0.76.2",
"@react-native/typescript-config": "0.76.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"babel-plugin-module-resolver": "^5.0.0",
"detox": "^20.27.6",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"engines": {
"node": ">=18"
}
}