123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "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",
- "e2e": "node ./scripts/e2e.ios.js"
- },
- "dependencies": {
- "react-native": "0.38.0",
- "react": "15.4.1",
- "react-native-navigation": "file:../"
- },
- "devDependencies": {
- "detox": "4.x.x",
- "detox-server": "1.x.x",
- "shell-utils": "1.x.x"
- },
- "detox": {
- "session": {
- "server": "ws://localhost:8099",
- "sessionId": "playground"
- },
- "ios-simulator": {
- "device": "iPhone 7"
- }
- },
- "babel": {
- "env": {
- "test": {
- "presets": [
- "react-native"
- ],
- "retainLines": true
- }
- }
- }
- }
|