react-native-firebase/tests-new/package.json

69 lines
2.8 KiB
JSON
Raw Normal View History

2018-03-23 13:40:07 +00:00
{
2018-03-23 14:26:11 +00:00
"name": "rnfirebase-tests",
2018-03-23 13:40:07 +00:00
"version": "7.2.0",
"private": true,
"scripts": {
2018-03-24 02:02:59 +00:00
"start-local-debug": "node node_modules/react-native/local-cli/cli.js start --platforms ios,android --skipflow",
"start": "REACT_DEBUGGER='echo nope' node node_modules/react-native/local-cli/cli.js start --platforms ios,android --skipflow",
2018-03-23 22:18:19 +00:00
"start-ci": "REACT_DEBUGGER='todo' node node_modules/react-native/local-cli/cli.js start --platforms ios,android --skipflow --nonPersistent",
2018-03-23 14:26:11 +00:00
"android:dev": "react-native run-android",
"android:prod": "react-native run-android --configuration=release",
"ios:dev": "react-native run-ios",
"ios:prod": "react-native run-ios --configuration=release",
"ios:pod:install": "cd ios && rm -rf ReactNativeFirebaseDemo.xcworkspace && pod install && cd .."
2018-03-23 13:40:07 +00:00
},
"dependencies": {
2018-03-24 02:02:59 +00:00
"detox": "^7.2.0",
"mocha": "^4.0.1",
2018-03-23 14:26:11 +00:00
"react": "^16.2.0",
"react-native": "^0.52.3",
2018-03-24 02:02:59 +00:00
"react-native-restart": "0.0.6",
"ws": "^5.1.0"
2018-03-23 13:40:07 +00:00
},
2018-03-23 14:26:11 +00:00
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-jest": "19.0.0",
"babel-plugin-flow-react-proptypes": "^0.21.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0"
},
2018-03-23 13:40:07 +00:00
"detox": {
"test-runner": "mocha",
"specs": "e2e",
"runner-config": "e2e/mocha.opts",
"configurations": {
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/example.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project ios/example.xcodeproj -scheme example -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -quiet",
"type": "ios.simulator",
"name": "iPhone 7 Plus"
},
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/example.app",
"build": "xcodebuild -project ios/example.xcodeproj -scheme example -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7 Plus"
},
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "pushd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && popd",
"type": "android.emulator",
2018-03-23 22:18:19 +00:00
"name": "TestingAVD"
2018-03-23 13:40:07 +00:00
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "pushd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && popd",
"type": "android.emulator",
2018-03-23 22:18:19 +00:00
"name": "TestingAVD"
2018-03-23 13:40:07 +00:00
}
}
}
}