├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── bin │ ├── crna-entry.js │ └── react-native-scripts.js ├── scripts │ ├── android.js │ ├── eject.js │ ├── init.js │ ├── ios.js │ └── start.js └── util │ ├── bsb.js │ ├── clearConsole.js │ ├── expo.js │ ├── install.js │ ├── log.js │ └── packager.js ├── taskfile.js ├── template ├── .babelrc ├── .watchmanconfig ├── README.md ├── app.json ├── bsconfig.json ├── gitignore └── src │ └── App.re └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/package.json -------------------------------------------------------------------------------- /src/bin/crna-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/bin/crna-entry.js -------------------------------------------------------------------------------- /src/bin/react-native-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/bin/react-native-scripts.js -------------------------------------------------------------------------------- /src/scripts/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/scripts/android.js -------------------------------------------------------------------------------- /src/scripts/eject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/scripts/eject.js -------------------------------------------------------------------------------- /src/scripts/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/scripts/init.js -------------------------------------------------------------------------------- /src/scripts/ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/scripts/ios.js -------------------------------------------------------------------------------- /src/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/scripts/start.js -------------------------------------------------------------------------------- /src/util/bsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/util/bsb.js -------------------------------------------------------------------------------- /src/util/clearConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/util/clearConsole.js -------------------------------------------------------------------------------- /src/util/expo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/util/expo.js -------------------------------------------------------------------------------- /src/util/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/util/install.js -------------------------------------------------------------------------------- /src/util/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/util/log.js -------------------------------------------------------------------------------- /src/util/packager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/src/util/packager.js -------------------------------------------------------------------------------- /taskfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/taskfile.js -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/template/README.md -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/template/app.json -------------------------------------------------------------------------------- /template/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/template/bsconfig.json -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/template/gitignore -------------------------------------------------------------------------------- /template/src/App.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/template/src/App.re -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-community/reason-react-native-scripts/HEAD/yarn.lock --------------------------------------------------------------------------------