This is a simple Todo List app built with React Native.
- Clone the repository:
git clone <repository-url> - Install dependencies:
yarn install
- Run the app on Android emulator or connected Android device:
npm run android - Run the app on iOS simulator or connected iOS device:
npm run ios - Start the Metro Bundler:
npm start - Run TypeScript type checking:
npm run ts-check - Lint the code:
npm run lint - Run tests:
npm run test
postinstall: Runnpx typesyncafter installation to sync TypeScript types.android: Build and run the Android app.android:clean: Clean the Android build artifacts and rebuild the app.ios: Build and run the iOS app.ios:clean: Clean the iOS build artifacts and rebuild the app.start: Start the Metro Bundler.ts-check: Run TypeScript type checking.lint: Lint the code using ESLint.test: Run tests using Jest.