-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.21 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.21 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
{
"name": "AnalyticsReactNativeE2E73",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"pods": "pod-install --repo-update",
"lint": "eslint .",
"start": "react-native start",
"build:android": "yarn detox build --configuration android.emu.debug",
"test:android": "yarn detox test --configuration android.emu.debug",
"build:ios": "yarn detox build --configuration ios.sim.debug",
"test:ios": "yarn detox test --configuration ios.sim.debug",
"start:e2e": "yarn start",
"android:deeplink": "adb shell am start -a android.intent.action.VIEW -d \"segmentreactnative://hello\" com.example.segmentanalyticsreactnative",
"ios:deeplink": "xcrun simctl openurl booted segmentreactnative://hello",
"android:emulator": "./android/device_setup.sh",
"clean": "yarn clean:ios && rimraf node_modules",
"clean:ios": "rimraf ios/build ios/Pods"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"react": "18.2.0",
"react-native": "0.73.0",
"react-native-gesture-handler": "^2.13.4",
"react-native-get-random-values": "^2.0.0",
"react-native-safe-area-context": "^4.7.4",
"react-native-screens": "^3.27.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.18",
"@react-native/eslint-config": "^0.73.1",
"@react-native/metro-config": "^0.73.2",
"@react-native/typescript-config": "^0.73.1",
"@types/jest": "^29.5.8",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.0",
"detox": "^20.17.0",
"eslint": "^8.19.0",
"express": "^4.19.2",
"jest": "^29.7.0",
"jest-circus": "^29.3.1",
"prettier": "2.8.8",
"react-test-renderer": "18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-retry-promise": "^0.7.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}