forked from better-rail/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.expo.json
More file actions
57 lines (57 loc) · 1.88 KB
/
package.expo.json
File metadata and controls
57 lines (57 loc) · 1.88 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint App.js app storybook test --fix --ext .js,.ts,.tsx && yarn format",
"build:e2e": "detox build -c ios.sim.expo",
"test:e2e": "./bin/downloadExpoApp.sh && detox test --configuration ios.sim.expo"
},
"dependencies": {
"expo": "40.0.1",
"expo-status-bar": "1.0.3",
"react": "16.13.1",
"react-native-safe-area-context": "3.1.8",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz"
},
"devDependencies": {
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-native": "0.63.2",
"expo-detox-hook": "1.0.10",
"detox-expo-helpers": "0.6.0",
"jest-expo": "40.0.1"
},
"jest": {
"projects": [
{
"preset": "jest-expo/ios",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|native-base|@storybook)"
],
"testPathIgnorePatterns": ["/node_modules/", "/e2e"]
},
{
"preset": "jest-expo/android",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|native-base|@storybook)"
],
"testPathIgnorePatterns": ["/node_modules/", "/e2e"]
}
]
},
"detox": {
"configurations": {
"ios.sim.expo": {
"binaryPath": "bin/Exponent.app",
"type": "ios.simulator",
"name": "iPhone 11"
},
"ios.sim.debug": null,
"ios.sim.release": null
}
}
}