forked from software-mansion/react-native-gesture-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.67 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.67 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
{
"name": "gesture-handler-e2e",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"fbjs": "^1.0.0",
"invariant": "^2.2.4",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-native": "0.59.8",
"react-navigation": "^3.9.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/runtime": "^7.4.4",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"detox": "^12.7.0",
"glob-to-regexp": "^0.4.1",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.54.0",
"mocha": "^6.1.4",
"react-test-renderer": "16.8.3"
},
"jest": {
"preset": "react-native"
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/ExampleE2E.app",
"build": "xcodebuild -project ios/ExampleE2E.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme ExampleE2E -parallelizeTargets -configuration Debug -derivedDataPath ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"name": "iPhone X"
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/ExampleE2E.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project ios/ExampleE2E.xcodeproj -destination 'platform=iOS Simulator,name=iPhone X' -scheme ExampleE2E -parallelizeTargets -configuration Release -derivedDataPath ios/build -UseModernBuildSystem=YES",
"type": "ios.simulator",
"name": "iPhone X"
}
},
"test-runner": "mocha"
}
}