-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.88 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
51
52
53
54
55
56
57
58
{
"name": "TsDetox",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.2"
},
"devDependencies": {
"@types/detox": "^9.0.0",
"@types/jasmine": "^2.8.9",
"@types/jest": "^23.3.5",
"@types/react": "^16.4.18",
"@types/react-native": "^0.57.7",
"@types/react-test-renderer": "^16.0.3",
"babel-jest": "23.6.0",
"detox": "^9.0.4",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.48.1",
"react-test-renderer": "16.6.0-alpha.8af6728",
"schedule": "0.4.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3"
},
"detox": {
"test-runner": "jest",
"runner-config": "./e2e/jest.config.js",
"session": {
"server": "ws://localhost:8099",
"sessionId": "YourProjectSessionId"
},
"configurations": {
"ios.sim.debug": {
"binaryPath": "./ios/build/Build/Products/Debug-iphonesimulator/TsDetox.app",
"build": "xcodebuild -project ./ios/TsDetox.xcodeproj -scheme TsDetox -configuration Debug -sdk iphonesimulator -derivedDataPath ./ios/build",
"type": "ios.simulator",
"name": "iPhone X"
},
"android.emu.debug": {
"binaryPath": "./android/app/build/outputs/apk/debug/app-debug.apk",
"build": "./android/gradlew assembleDebug assembleAndroidTest installDebug -DtestBuildType=debug -p ./android",
"type": "android.emulator",
"name": "Pixel_2_API_27"
},
"android.emu.release": {
"binaryPath": "./android/app/build/outputs/apk/release/app-release.apk",
"build": "./android/gradlew assembleRelease assembleAndroidTest -DtestBuildType=release -p ./android",
"type": "android.emulator",
"name": "Pixel_2_API_27"
}
}
}
}