Skip to main content

package.json

Connect - Instagram-like photo sharing social network#

  1. Installation

yarn install --frozen-lockfile

package.json
{
"name": "Connect",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android:build:release": "cd android && ./gradlew assembleRelease",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "node_modules/.bin/eslint --ext .js,.ts,.tsx src/",
"lintfix": "node_modules/.bin/eslint --fix --ext .js,.ts,.tsx src/; exit 0",
"postinstall": "./postinstall.sh"
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.8.0",
"@react-native-async-storage/async-storage": "^1.15.2",
"@react-native-community/cameraroll": "^4.0.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.7",
"@react-navigation/native": "^5.9.2",
"@react-navigation/stack": "^5.14.2",
"color": "^3.1.3",
"faker": "^5.2.0",
"lodash": "^4.17.20",
"mobx": "^6.1.7",
"mobx-persist-store": "^0.5.30",
"mobx-react-lite": "^3.2.0",
"moment": "^2.29.1",
"numeral": "^2.0.6",
"patch-package": "^6.4.7",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.64.1",
"react-native-fast-image": "^8.3.4",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "^1.9.0",
"react-native-gifted-chat": "^0.16.3",
"react-native-iphone-x-helper": "^1.3.1",
"react-native-modalize": "^2.0.8",
"react-native-pager-view": "^5.2.0",
"react-native-permissions": "^3.0.4",
"react-native-reanimated": "^2.0.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.17.0",
"react-native-share": "^5.1.1",
"react-native-swiper": "1.5.14",
"react-native-tab-view": "^2.15.2",
"react-native-vector-icons": "^8.0.0",
"react-native-video": "^5.1.1",
"use-memo-one": "^1.1.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.3",
"@types/react-native": "^0.63.51",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sorting": "^0.4.1",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1",
"postinstall-postinstall": "^2.1.0",
"typescript": "^4.2.3"
},
"jest": {
"preset": "react-native"
}
}