'How do I get rid of these errors with my react app in my run build?

This is my first time deploying a React App. I just want to execute npm run build on my React.js portfolio so I could deploy it. When I run npm run build I see this error

Error: Parse Error: <link
        <
        meta
        name="viewport"
        content="width=device-width, initial-scale=1"
      />
      <meta name="theme-color" content="#000000" />
      <meta
        name="description"
        content="Web site created using create-react-app"
      />
      <link rel="apple-touch-icon" href="/logo192.png" />
      <!--
        manifest.json provides metadata used when your web app is installed on a
        user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
      -->
      <link rel="manifest" href="/manifest.json" />
      <!--
        Notice the use of  in the tags above.
        It will be replaced with the URL of the `public` folder during the build.
        Only files inside the `public` folder can be referenced from the HTML.

        Unlike "/favicon.ico" or "favicon.ico", "/favicon.ico" will
        work correctly both with client-side routing and a non-root public URL.
        Learn how to configure a non-root public URL by running `npm run build`.
      -->
      <title>React Apps</title>
    <script defer src="/static/js/main.07c30182.js"></script><link href="/static/css/main.9def7c39.css" rel="stylesheet"  ></head>
    <body>
      <noscript>You need to enable JavaScript to run this app.</noscript>
      <div id="root"></div>
      <!--
        This HTML file is a template.
        If you open it directly in the browser, you will see an empty page.

        You can add webfonts, meta tags, or analytics to this file.
        The build step will place the bundled scripts into the <body> tag.

        To begin the development, run `npm start` or `yarn start`.
        To create a production bundle, use `npm run build` or `yarn build`.
      -->
    </body>
    <script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
    <script>
      src = "../node_modules/@fortawesome/fontawesome-free/js/fontawesome.js";
    </script>
    <script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.3.3/gsap.min.js"></script>

    <script src="../src/scripts/gsap.js"></script>
    <script src="node_modules/@glidejs/glide/dist/glide.min.js"></script>

    <script>
      new Glide(".glide").mount();
    </script>
  </html>

  - htmlparser.js:255 HTMLParser.parse
    [portfolio-app]/[html-minifier-terser]/src/htmlparser.js:255:15

  - task_queues:96 processTicksAndRejections
    node:internal/process/task_queues:96:5

  - htmlminifier.js:1282 async minify
    [portfolio-app]/[html-minifier-terser]/src/htmlminifier.js:1282:3

  - htmlminifier.js:1365 async Object.exports.minify
    [portfolio-app]/[html-minifier-terser]/src/htmlminifier.js:1365:16

This is my package.json folder if it has to do with anything. I am fairly certain that this is not the issue but I guess I will find out. Sooner or later.

{
  "name": "portfolio-app",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@emailjs/browser": "^3.4.0",
    "@fortawesome/fontawesome-free": "^5.15.4",
    "@fortawesome/fontawesome-svg-core": "^1.2.36",
    "@fortawesome/free-solid-svg-icons": "^5.15.4",
    "@fortawesome/react-fontawesome": "^0.1.16",
    "@glidejs/glide": "^3.5.2",
    "@testing-library/jest-dom": "^5.16.1",
    "@testing-library/react": "^12.1.2",
    "@testing-library/user-event": "^13.5.0",
    "bootstrap": "^5.1.3",
    "emailjs": "^3.7.0",
    "gsap": "^3.9.1",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-fontawesome": "^1.7.1",
    "react-scripts": "^5.0.1",
    "typed.js": "^2.0.12",
    "web-vitals": "^2.1.3"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
      "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
"browserslist": {
"production": [
  ">0.2%",
  "not dead",
  "not op_mini all"
],
"development": [
  "last 1 chrome version",
  "last 1 firefox version",
  "last 1 safari version"
]
}
}


Sources

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

Source: Stack Overflow

Solution Source