UNPKG

@ajaysidhu/react-native-template

Version:

It is a minimalist React Native template with preconfigured common set of packages to start a new app.

91 lines (90 loc) 3.26 kB
{ "name": "projectname", "version": "0.0.1", "private": true, "scripts": { "androidDevelopmentDebug": "react-native run-android --mode=developmentDebug --appIdSuffix=development", "androidTestingDebug": "react-native run-android --mode=apptestingDebug --appIdSuffix=testing", "androidStagingDebug": "react-native run-android --mode=stagingDebug --appIdSuffix=staging", "androidProductionDebug": "react-native run-android --mode=productionDebug", "iosStagingDebug": "react-native run-ios --scheme 'staging'", "iosProductionDebug": "react-native run-ios", "iosTestingDebug": "react-native run-ios --scheme 'testing'", "iosDevelopmentDebug": "react-native run-ios --scheme 'development'", "lint": "eslint .", "lint:fix": "eslint . --fix", "start": "react-native start", "test": "jest", "test:watch": "npx cross-env NODE_ENV=test jest --watchAll", "postinstall": "node ./scripts/runPostInstallUninstallTasks.js", "uninstall": "node ./scripts/runPostInstallUninstallTasks.js" }, "dependencies": { "@hookform/resolvers": "^5.2.2", "@react-native-async-storage/async-storage": "^2.2.0", "@react-native-community/netinfo": "^11.4.1", "@react-navigation/native": "^7.1.26", "@react-navigation/stack": "^7.6.13", "@reduxjs/toolkit": "^2.11.2", "axios": "^1.13.2", "babel-preset-expo": "^54.0.9", "expo": "^54.0.30", "expo-splash-screen": "^31.0.13", "i18next": "^25.7.3", "react": "19.1.0", "react-hook-form": "^7.69.0", "react-i18next": "^16.5.0", "react-native": "0.81.5", "react-native-config": "^1.6.1", "react-native-flash-message": "^0.4.2", "react-native-gesture-handler": "~2.28.0", "react-native-keyboard-aware-scroll-view": "^0.9.5", "react-native-keychain": "^10.0.0", "react-native-safe-area-context": "^5.5.2", "react-native-screens": "~4.16.0", "react-native-simple-logger": "^0.1.1", "react-native-size-matters": "^0.4.2", "react-native-svg": "15.12.1", "react-native-svg-transformer": "^1.5.2", "react-redux": "^9.2.0", "yup": "^1.7.1" }, "devDependencies": { "@babel/core": "^7.26.0", "@babel/preset-env": "^7.25.3", "@babel/runtime": "^7.25.0", "@react-native-community/cli": "20.0.0", "@react-native-community/cli-platform-android": "20.0.0", "@react-native-community/cli-platform-ios": "20.0.0", "@react-native/babel-preset": "0.81.5", "@react-native/eslint-config": "0.81.5", "@react-native/metro-config": "0.81.5", "@react-native/typescript-config": "0.81.5", "@testing-library/react-native": "^12.5.2", "@types/jest": "29.5.14", "@types/react": "~19.1.10", "@types/react-test-renderer": "^19.1.0", "babel-jest": "^29.6.3", "eslint": "^8.19.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.1", "jest": "^29.6.3", "prettier": "2.8.8", "react-test-renderer": "19.1.0", "ts-jest": "^29.1.2", "typescript": "^5.8.3" }, "engines": { "node": ">=20" }, "expo": { "autolinking": { "exclude": [ "expo-application", "expo-file-system", "expo-font", "expo-keep-awake" ] } } }