-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "Guidely",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test:e2e": "detox test -c ios.sim.debug",
"test:e2e:build": "detox build"
},
"dependencies": {
"detox-cli": "^1.1.0-alpha.0449f580",
"react": "16.2.0",
"react-native": "0.53.0"
},
"devDependencies": {
"babel-jest": "22.2.2",
"babel-preset-react-native": "4.0.0",
"detox": "^7.1.0",
"flow-bin": "^0.61.0",
"jest": "^22.3.0",
"mocha": "^5.0.1",
"react-test-renderer": "16.2.0"
},
"jest": {
"preset": "react-native"
},
"detox": {
"test-runner": "jest",
"runner-config": "e2e/config.json",
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Guidely.app",
"build": "xcodebuild -project ios/Guidely.xcodeproj -scheme Guidely -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7"
}
}
}
}