-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.38 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
{
"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:carplay": "react-native run-ios --scheme SampleAppCarPlay",
"ios-release": "react-native run-ios --mode Release",
"lint": "eslint .",
"test": "jest",
"build:android": "react-native build-android --extra-params \"--no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a\"",
"build:ios": "react-native build-ios --mode Debug",
"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": "19.2.0",
"react-native": "0.83.1",
"react-native-gesture-handler": "2.29.1",
"react-native-pager-view": "^6.9.1",
"react-native-permissions": "^5.1.0",
"react-native-safe-area-context": "^5.5.2",
"react-native-screens": "4.15.4",
"react-native-select-dropdown": "^4.0.1",
"react-native-snackbar": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.1.0",
"@react-native-community/cli-platform-android": "20.1.0",
"@react-native-community/cli-platform-ios": "20.1.0",
"@react-native/babel-preset": "0.83.1",
"@react-native/metro-config": "0.83.1",
"@react-native/typescript-config": "0.83.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"detox": "^20.47.0",
"jest": "^29.7.0",
"react-native-builder-bob": "^0.40.13",
"react-native-monorepo-config": "^0.1.9",
"ts-jest": "^29.2.5"
},
"engines": {
"node": ">=20"
}
}