├── .eslintrc ├── .flowconfig ├── .gitignore ├── .huskyrc ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.js ├── devDependencies.json ├── extension.json ├── index.js ├── package.json ├── scripts.json ├── setup.js └── src ├── App ├── __tests__ │ └── index.spec.js └── index.js └── config └── tests └── setup.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE 2 | .idea 3 | .vscode 4 | -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/.huskyrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | LICENSE 2 | README.MD 3 | .gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/babel.config.js -------------------------------------------------------------------------------- /devDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/devDependencies.json -------------------------------------------------------------------------------- /extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/extension.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/package.json -------------------------------------------------------------------------------- /scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/scripts.json -------------------------------------------------------------------------------- /setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/setup.js -------------------------------------------------------------------------------- /src/App/__tests__/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/src/App/__tests__/index.spec.js -------------------------------------------------------------------------------- /src/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/src/App/index.js -------------------------------------------------------------------------------- /src/config/tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucianomlima/react-native-template-basic/HEAD/src/config/tests/setup.js --------------------------------------------------------------------------------