Hey guys I’m having trouble starting my react application, anyone know how what my problem is?

`{
  "name": "google-clone",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^13.4.0",
    "@testing-library/user-event": "^13.5.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-scripts": "5.0.1",
    "web-vitals": "^2.1.4"
  },
  "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"
    ]
  }
}`{

Hey guys I’m trying to start my react app and every here is the package.json File and I have no clue what I’m doing wrong…I have looked online and they tell people to add the “scripts” and the “start” but I already have those, I litterally have no idea why my npm start won’t work. Anyone have some advice?

npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:UserspeytoOneDriveDesktopgoogle-clone/package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open ‘C:UserspeytoOneDriveDesktopgoogle-clonepackage.json’
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent

npm ERR! A complete log of this run can be found in:
npm ERR! C:UserspeytoAppDataLocalnpm-cache_logs2023-02-08T01_50_32_942Z-debug-0.log

It is throwing me this error when I try and npm start the application any advice would be appriciated.