-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
54 lines (54 loc) · 1.98 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
{
"name": "ReactNativeTrackerExample",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"pods": "pod-install --quiet",
"test": "jest",
"rebuild-detox": "detox clean-framework-cache && detox build-framework-cache",
"build:ios": "detox build --configuration ios.sim.debug",
"build:ios-debug": "detox build --configuration ios.sim.debug",
"build:ios-release": "detox build --configuration ios.sim.release",
"build:android-debug": "detox build --configuration android.emu.debug",
"build:android-release": "detox build --configuration android.emu.release",
"test:ios": "detox test --configuration ios.sim.debug",
"test:ios-debug": "detox test --configuration ios.sim.debug",
"test:ios-release": "detox test --configuration ios.sim.release",
"test:android-debug": "detox test --configuration android.emu.debug",
"test:android-release": "detox test --configuration android.emu.release",
"e2e:ios": "npm-run-all build:ios-release test:ios-release test",
"e2e:android": "npm-run-all build:android-release test:android-release test"
},
"dependencies": {
"react": "18.3.1",
"react-native": "0.72.15",
"react-native-webview": "^13.10.4"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/runtime": "^7.24.7",
"@react-native/eslint-config": "^0.72.2",
"detox": "~20.11.4",
"@react-native/metro-config": "^0.72.12",
"@types/jest": "^29.5.12",
"babel-plugin-module-resolver": "^5.0.2",
"metro-react-native-babel-preset": "0.76.9",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.5"
},
"jest": {
"preset": "react-native",
"verbose": true,
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native|@snowplow/react-native-tracker|react-native-button)/)"
]
},
"engines": {
"node": ">=16"
}
}