-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 845 Bytes
/
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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
},
"dependencies": {
"detox": "^13.0.0",
"detox-expo-helpers": "^0.6.0",
"expo": "^32.0.0",
"expo-detox-hook": "^1.0.10",
"jest": "^24.8.0",
"jest-expo": "^33.0.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz"
},
"devDependencies": {
"babel-preset-expo": "^5.0.0"
},
"private": true,
"detox": {
"test-runner": "jest",
"specs": "e2e",
"configurations": {
"ios": {
"binaryPath": "bin/expo.app",
"type": "ios.simulator",
"name": "iPhone 8",
"launchArgs": "-detoxPrintBusyIdleResources YES"
}
}
}
}