12345678910111213141516171819202122232425262728293031 |
- {
- "name": "playground",
- "version": "1.0.0",
- "private": true,
- "scripts": {
- "postinstall": "node ./scripts/postinstall.js",
- "start": "adb reverse tcp:8081 tcp:8081; watchman watch-del-all; react-native start --reset-cache",
- "xcode": "open ios/playground.xcodeproj",
- "android": "cd android && ./gradlew installDebug"
- },
- "dependencies": {
- "react-native": "0.38.0",
- "react": "15.4.1",
- "react-native-navigation": "file:../"
- },
- "devDependencies": {
- "detox": "4.x.x",
- "detox-server": "1.x.x"
- },
- "detox": {
- "session": {
- "server": "ws://localhost:8099",
- "sessionId": "playground"
- },
- "ios-simulator": {
- "app": "ios/DerivedData/playground/Build/Products/Debug_Detox-iphonesimulator/playground.app",
- "device": "iPhone 7, iOS 10.2"
- }
- }
- }
|