Skip to content

Instantly share code, notes, and snippets.

@Nodirbek-Sharipov
Created September 7, 2022 14:59
Show Gist options
  • Save Nodirbek-Sharipov/a8332db720c9848443a7a957256b5ac3 to your computer and use it in GitHub Desktop.
Save Nodirbek-Sharipov/a8332db720c9848443a7a957256b5ac3 to your computer and use it in GitHub Desktop.
{
"name": "appName",
"version": "0.0.1",
"private": true,
"config": {
"env": "dev"
},
"scripts": {
"config:env": "yarn config set appName:env",
"setup:android": "yarn --frozen-lockfile && jetify",
"setup:ios": "yarn --frozen-lockfile && yarn pod:install",
"pod:install": "cd ios/ && pod install && cd ../",
"jetify": "jetify",
"android": "ENVFILE=.env.$npm_package_config_env react-native run-android",
"android:release": "yarn android --variant=release",
"android:apk": "cd android && ENVFILE=.env.$npm_package_config_env ./gradlew assembleRelease && cd ../",
"ios": "react-native run-ios --scheme 'appName-Dev'",
"ios:staging": "react-native run-ios --scheme 'appName-Staging'",
"ios:debug-staging": "react-native run-ios --scheme 'appName-StagingDebug'",
"ios:production": "react-native run-ios --scheme 'appName-Production'",
"ios:app-store-signing": "node bitrise/scripts/updateIosSigning.js",
"start": "react-native start",
"test": "BABEL_ENV=test jest",
"lint": "eslint src --quiet",
"prepare": "husky install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.17.9",
"@react-native-community/checkbox": "0.5.12",
"@react-native-community/slider": "4.2.4",
"@react-native-picker/picker": "2.4.1",
"@react-navigation/bottom-tabs": "6.3.1",
"@react-navigation/native": "6.0.10",
"@react-navigation/native-stack": "6.6.1",
"@redux-devtools/extension": "3.2.2",
"axios": "0.27.1",
"axios-observable": "1.4.0",
"formik": "2.2.9",
"husky": "8.0.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"react": "17.0.2",
"react-dom": "18.0.0",
"react-native": "0.68.0",
"react-native-appsflyer": "6.6.1",
"react-native-chart-kit": "6.12.0",
"react-native-config": "1.4.5",
"react-native-draggable-flatlist": "3.1.2",
"react-native-flipper": "0.142.0",
"react-native-gesture-handler": "2.5.0",
"react-native-get-random-values": "1.7.2",
"react-native-in-app-review": "4.1.1",
"react-native-inappbrowser-reborn": "3.6.3",
"react-native-keychain": "8.1.1",
"react-native-linear-gradient": "2.5.6",
"react-native-modal": "13.0.1",
"react-native-picker-select": "8.0.4",
"react-native-plaid-link-sdk": "7.4.0",
"react-native-progress": "5.0.0",
"react-native-reanimated": "2.9.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "3.13.1",
"react-native-splash-screen": "3.3.0",
"react-native-svg": "12.3.0",
"react-native-vector-icons": "9.1.0",
"react-redux": "7.2.8",
"redux": "4.1.2",
"redux-flipper": "2.0.1",
"redux-observable": "2.0.0",
"reselect": "4.1.5",
"rn-placeholder": "3.0.3",
"rxjs": "7.5.5",
"styled-components": "5.3.5",
"uuid": "8.3.2",
"yup": "0.32.11"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.17.9",
"@react-native-community/eslint-config": "2.0.0",
"@testing-library/react-hooks": "8.0.0",
"@types/enzyme": "3.10.12",
"@types/jest": "27.4.1",
"@types/lodash": "4.14.182",
"@types/react-native": "0.67.4",
"@types/react-native-vector-icons": "6.4.10",
"@types/react-test-renderer": "17.0.2",
"@types/redux-mock-store": "1.0.3",
"@types/styled-components-react-native": "5.1.3",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.7",
"babel-jest": "26.6.3",
"babel-plugin-macros": "3.1.0",
"babel-plugin-module-resolver": "4.1.0",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "27.5.1",
"jest-extended": "2.0.0",
"jest-styled-components": "7.0.8",
"metro-react-native-babel-preset": "0.67.0",
"mockdate": "3.0.5",
"prettier": "2.6.2",
"react-test-renderer": "17.0.2",
"redux-mock-store": "1.5.4",
"typescript": "4.6.3"
},
"resolutions": {
"@types/react": "^17"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment