'how to resolve expo error when running github repo

i had a github repo that i coded a few months back, i tried opening the repo and running it and its not working. Every time i try to run it i keep getting the same error. I tried all the solutions to similar question but none of them work. When i create a new expo project it works, but as soon as i paste my code from my repo i get that error.

here is the error i keep getting:

node_modules/@react-navigation/native/src/index.tsx: [BABEL] 
/Users/myname/Desktop/app-frontend/node_modules/@react- 
navigation/native/src/index.tsx: 
You gave us a visitor for the node type TSInstantiationExpression but it's not a valid type

here is my package.json:

{
  "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"
  },
  "dependencies": {
    "@babel/cli": "^7.17.10",
    "@react-native-async-storage/async-storage": "~1.15.0",
    "@react-native-community/hooks": "^2.6.0",
    "@react-native-community/netinfo": "7.1.3",
    "@react-native-masked-view/masked-view": "^0.2.6",
    "@react-native-picker/picker": "2.2.1",
    "@react-navigation/bottom-tabs": "^5.11.7",
    "@react-navigation/native": "^5.9.2",
    "@react-navigation/stack": "^5.14.2",
    "apisauce": "^2.0.1",
    "d3-scale": "^3.2.3",
    "d3-shape": "^2.0.0",
    "dayjs": "^1.10.4",
    "expo": "^44.0.0",
    "expo-app-loading": "~1.3.0",
    "expo-av": "~10.2.0",
    "expo-camera": "~12.1.0",
    "expo-constants": "~13.0.0",
    "expo-contacts": "~10.1.0",
    "expo-image-manipulator": "~10.2.0",
    "expo-image-picker": "~12.0.1",
    "expo-linking": "~3.0.0",
    "expo-local-authentication": "~12.1.0",
    "expo-permissions": "~13.1.0",
    "expo-secure-store": "~11.1.0",
    "expo-status-bar": "~1.2.0",
    "formik": "^2.2.6",
    "jwt-decode": "^3.1.2",
    "lottie-react-native": "5.0.1",
    "moment": "^2.29.1",
    "react": "17.0.1",
    "react-dom": "17.0.1",
    "react-native": "https://github.com/expo/react-native/archive/sdk-44.0.0.tar.gz",
    "react-native-actionsheet": "^2.4.2",
    "react-native-appearance": "~0.3.3",
    "react-native-calendars": "^1.1282.0",
    "react-native-contacts": "^7.0.4",
    "react-native-country-list": "^1.0.10",
    "react-native-dynamic": "^1.0.0",
    "react-native-elements": "^3.3.0",
    "react-native-gesture-handler": "~2.1.0",
    "react-native-image-pan-zoom": "^2.1.12",
    "react-native-image-zoom-viewer": "^3.0.1",
    "react-native-masked-text": "^1.13.0",
    "react-native-modal": "^11.10.0",
    "react-native-modalize": "^2.0.13",
    "react-native-progress": "^4.1.2",
    "react-native-reanimated": "~2.3.1",
    "react-native-safe-area-context": "3.3.2",
    "react-native-screens": "~3.10.1",
    "react-native-size-matters": "^0.4.0",
    "react-native-skeleton-placeholder": "^3.0.4",
    "react-native-snap-carousel": "^3.9.1",
    "react-native-svg": "^12.1.1",
    "react-native-web": "0.17.1",
    "svg-path-properties": "^1.0.11",
    "victory-native": "^35.3.1",
    "yup": "^0.32.9"
  },
  "devDependencies": {
    "@babel/core": "^7.12.9",
    "babel-cli": "^6.26.0"
  },
  "private": true
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source