forked from segmentio/analytics-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.17 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
{
"name": "@segment/analytics-react-native-example",
"description": "Example app for @segment/analytics-react-native",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"pods": "cd ios && pod install --repo-update",
"build:android": "yarn detox build --configuration android",
"test:android": "yarn detox test --configuration android",
"build:ios": "yarn detox build --configuration ios",
"test:ios": "yarn detox test --configuration ios",
"start": "react-native start",
"start:e2e": "RN_SRC_EXT=e2e.mock.ts,e2e.mock.js 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": "^1.15.7",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"react": "18.0.0",
"react-native": "0.69.7",
"react-native-bootsplash": "^3.2.4",
"react-native-gesture-handler": "^2.9.0",
"react-native-get-random-values": "^1.8.0",
"react-native-safe-area-context": "^3.3.0",
"react-native-tracking-transparency": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^27.0.3",
"@types/react": "^18.0.15",
"@types/react-native": "0.69.3",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"body-parser": "^1.19.0",
"detox": "^20.0.1",
"eslint": "8.2.0",
"express": "^4.17.1",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"metro-react-native-babel-preset": "^0.70.3",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.5.2"
}
}