2022-12-21 10:01:12 +00:00
|
|
|
{
|
|
|
|
"name": "enatega-rider-app",
|
|
|
|
"version": "5.0.0",
|
|
|
|
"main": "node_modules/expo/AppEntry.js",
|
|
|
|
"scripts": {
|
|
|
|
"start": "expo start",
|
|
|
|
"android": "expo start --android",
|
|
|
|
"ios": "expo start --ios",
|
|
|
|
"eject": "expo eject",
|
|
|
|
"format": "prettier --write '**/*.js'",
|
|
|
|
"lint:fix": "eslint . --ext .js --fix",
|
|
|
|
"postinstall": "patch-package"
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
|
|
|
"npm run format",
|
|
|
|
"npm run lint:fix"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@apollo/react-hooks": "^3.1.3",
|
2023-03-09 09:15:59 +00:00
|
|
|
"@expo/vector-icons": "^13.0.0",
|
|
|
|
"@react-native-async-storage/async-storage": "~1.17.3",
|
2022-12-21 10:01:12 +00:00
|
|
|
"@react-native-community/masked-view": "0.1.10",
|
|
|
|
"@react-navigation/bottom-tabs": "^5.11.11",
|
|
|
|
"@react-navigation/drawer": "^5.12.5",
|
|
|
|
"@react-navigation/native": "^5.5.1",
|
|
|
|
"@react-navigation/stack": "^5.14.5",
|
|
|
|
"apollo-boost": "^0.4.3",
|
|
|
|
"apollo-cache-inmemory": "^1.6.2",
|
|
|
|
"apollo-client": "^2.6.3",
|
|
|
|
"apollo-link": "^1.2.12",
|
|
|
|
"apollo-link-context": "^1.0.18",
|
|
|
|
"apollo-link-state": "^0.4.2",
|
|
|
|
"apollo-link-ws": "^1.0.20",
|
|
|
|
"apollo-upload-client": "^10.0.1",
|
2023-03-09 09:15:59 +00:00
|
|
|
"deprecated-react-native-prop-types": "^4.0.0",
|
|
|
|
"expo": "^47.0.0",
|
|
|
|
"expo-constants": "~14.0.2",
|
|
|
|
"expo-font": "~11.0.1",
|
|
|
|
"expo-localization": "~14.0.0",
|
|
|
|
"expo-location": "~15.0.1",
|
|
|
|
"expo-notifications": "~0.17.0",
|
|
|
|
"expo-splash-screen": "~0.17.5",
|
|
|
|
"expo-task-manager": "~11.0.1",
|
|
|
|
"expo-updates": "~0.15.6",
|
2022-12-21 10:01:12 +00:00
|
|
|
"graphql": "^14.3.1",
|
|
|
|
"graphql-tag": "^2.10.1",
|
|
|
|
"i18n-js": "^3.3.0",
|
2023-03-09 09:15:59 +00:00
|
|
|
"patch-package": "^6.5.1",
|
|
|
|
"react": "18.1.0",
|
2022-12-21 10:01:12 +00:00
|
|
|
"react-apollo": "^2.5.8",
|
2023-03-09 09:15:59 +00:00
|
|
|
"react-native": "0.70.5",
|
2022-12-21 10:01:12 +00:00
|
|
|
"react-native-animatable": "^1.3.2",
|
|
|
|
"react-native-flash-message": "^0.1.13",
|
2023-03-09 09:15:59 +00:00
|
|
|
"react-native-gesture-handler": "~2.8.0",
|
2022-12-21 10:01:12 +00:00
|
|
|
"react-native-gifted-chat": "^0.16.3",
|
2023-03-09 09:15:59 +00:00
|
|
|
"react-native-maps": "1.3.2",
|
2022-12-21 10:01:12 +00:00
|
|
|
"react-native-maps-directions": "^1.8.0",
|
|
|
|
"react-native-material-textfield": "^0.16.1",
|
|
|
|
"react-native-modal": "^11.5.6",
|
2023-03-09 09:15:59 +00:00
|
|
|
"react-native-reanimated": "~2.12.0",
|
|
|
|
"react-native-safe-area-context": "4.4.1",
|
|
|
|
"react-native-screens": "~3.18.0",
|
|
|
|
"react-native-svg": "13.4.0",
|
|
|
|
"react-native-webview": "11.23.1",
|
2022-12-21 10:01:12 +00:00
|
|
|
"subscriptions-transport-ws": "^0.9.16"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-09 09:15:59 +00:00
|
|
|
"babel-preset-expo": "~9.2.1",
|
2022-12-21 10:01:12 +00:00
|
|
|
"eslint": "^7.1.0",
|
|
|
|
"eslint-config-standard": "^14.1.1",
|
|
|
|
"eslint-plugin-import": "^2.20.2",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
|
|
"eslint-plugin-react": "^7.20.0",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
|
|
"husky": "^4.2.5",
|
|
|
|
"lint-staged": "^10.2.7",
|
|
|
|
"prettier": "2.0.5",
|
|
|
|
"prettier-config-standard": "^1.0.1"
|
|
|
|
},
|
|
|
|
"private": true
|
|
|
|
}
|