Enatega Multivendor
  • Introduction
  • High Level Architecture
  • Installation
    • How to deploy in local machine
    • How to deploy in production
    • How to Publish App
  • FAQS
  • License
  • ChangeLog
  • API SERVER
    • Introduction
    • Technologies
    • Packages Json
    • Outline
    • Model Diagram
    • Routes
    • Queries Mutations and Fragments
    • Resolvers
      • Order Resolver
      • Food Resolver
      • Configuration Resolver
      • Category Resolver
      • Auth Resolvers
  • ADMIN WEB DASHBOARD
    • Introduction
    • Technologies
    • Packages Json
    • Folder Structure
    • Customize
  • RIDER APP
    • Introduction
    • Folder Structure
    • Packages Json
    • Technologies Used
    • Guide
      • Customize
    • Components
  • CUSTOMER APP
    • Introduction
    • Folder Structure
    • Packages Json
    • Technologies Used
    • Guide
      • Customize
    • Components
  • RESTAURANT APP
    • Introduction
    • Folder Structure
    • Packages Json
    • Technologies Used
    • Guide
      • Customize
    • Components
  • CUSTOMER WEB
    • Introduction
    • Folder Structure
    • Package Json
    • Technologies Used
    • Components
  • Amplitude Dashboard
    • Introduction
    • Amplitude integration with Enatega Multivendor
  • Sentry Dashboard
    • Introduction
    • Sentry integration with Enatega Multivendor
  • CONFIGURATIONS
    • Google Maps API Keys
    • Push Notification Keys
    • Social Login
    • Configuring Cloudinary
    • Configuring Database
    • Configuring Payment Gateways
    • Server Configurations
Powered by GitBook
On this page

Was this helpful?

  1. RESTAURANT APP

Packages Json

Packages Used

{
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "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.5",
    "@apollo/react-testing": "^3.1.4",
    "@react-native-async-storage/async-storage": "^1.13.2",
    "@react-native-community/masked-view": "0.1.10",
    "@react-navigation/bottom-tabs": "^5.6.1",
    "@react-navigation/material-top-tabs": "^5.2.12",
    "@react-navigation/native": "^5.6.1",
    "@react-navigation/stack": "^5.6.2",
    "@use-expo/font": "^2.0.0",
    "apollo-cache-inmemory": "^1.6.6",
    "apollo-client": "^2.6.10",
    "apollo-link": "^1.2.14",
    "apollo-link-context": "^1.0.20",
    "apollo-link-error": "^1.1.13",
    "apollo-link-http": "^1.5.17",
    "apollo-link-ws": "^1.0.20",
    "expo": "^40.0.0",
    "expo-notifications": "~0.8.2",
    "expo-status-bar": "~1.0.3",
    "graphql": "^14.7.0",
    "graphql-tag": "^2.10.3",
    "patch-package": "^6.2.2",
    "react": "16.13.1",
    "react-dom": "16.13.1",
    "react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
    "react-native-flash-message": "^0.1.21",
    "react-native-gesture-handler": "~1.8.0",
    "react-native-material-textfield": "^0.16.1",
    "react-native-reanimated": "~1.13.0",
    "react-native-safe-area-context": "3.1.9",
    "react-native-screens": "~2.15.0",
    "react-native-tab-view": "^2.14.4",
    "react-native-web": "~0.13.12",
    "subscriptions-transport-ws": "^0.9.16",
    "validate.js": "^0.13.1"
  },
  "devDependencies": {
    "@babel/core": "~7.9.0",
    "babel-preset-expo": "8.3.0",
    "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
}
PreviousFolder StructureNextTechnologies Used

Last updated 4 years ago

Was this helpful?