@ajaysidhu/react-native-template
Version:
It is a minimalist React Native template with preconfigured common set of packages to start a new app.
90 lines (89 loc) • 3.22 kB
JSON
{
"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": "^3.10.0",
"@react-native-async-storage/async-storage": "^2.1.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"@reduxjs/toolkit": "^2.5.0",
"axios": "^1.7.9",
"expo": "^52.0.25",
"expo-splash-screen": "^0.29.20",
"i18next": "^24.2.1",
"react": "18.3.1",
"react-hook-form": "^7.54.2",
"react-i18next": "^15.4.0",
"react-native": "0.76.6",
"react-native-config": "^1.5.3",
"react-native-flash-message": "^0.4.2",
"react-native-gesture-handler": "^2.22.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-keychain": "^9.2.2",
"react-native-safe-area-context": "^5.1.0",
"react-native-screens": "^4.5.0",
"react-native-simple-logger": "^0.1.1",
"react-native-size-matters": "^0.4.2",
"react-native-svg": "^15.11.1",
"react-native-svg-transformer": "^1.5.0",
"react-redux": "^9.2.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.76.6",
"@react-native/eslint-config": "0.76.6",
"@react-native/metro-config": "0.76.6",
"@react-native/typescript-config": "0.76.6",
"@testing-library/react-native": "^12.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.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": "18.3.1",
"ts-jest": "^29.1.2",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"expo": {
"autolinking": {
"exclude": [
"expo-application",
"expo-file-system",
"expo-font",
"expo-keep-awake"
]
}
}
}