-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.74 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
{
"name": "expo-e2e-demo",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"start:go": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"build:ios": "detox build -c ios.sim.debug",
"test:ios": "detox test -c ios.sim.debug",
"e2e:ios": "yarn build:ios && yarn test:ios",
"build:ios-release": "detox build -c ios.sim.release",
"test:ios-release": "detox test -c ios.sim.release",
"e2e:ios-release": "yarn build:ios-release && yarn test:ios-release",
"build:android": "detox build -c android.emu.debug",
"test:android": "detox test -c android.emu.debug",
"e2e:android": "yarn build:android && yarn test:android",
"build:android-release": "detox build -c android.emu.release",
"test:android-release": "detox test -c android.emu.release",
"e2e:android-release": "yarn build:android-release && yarn test:android-release",
"eas-build-pre-install": "./eas-hooks/eas-build-pre-install.sh",
"eas-build-on-success": "./eas-hooks/eas-build-on-success.sh",
"eas-e2e": "eas build -p ios --profile test"
},
"dependencies": {
"expo": "~46.0.9",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.5",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@config-plugins/detox": "^3.0.0",
"@expo/xcpretty": "^4.1.0",
"@types/jest": "^28.1.6",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"detox": "^19.12.1",
"jest": "^28.1.3",
"jest-circus": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^4.6.3"
},
"private": true
}