``` { "name": "client", "version": "0.1.0", "private": true, "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint" ```
However when I run npm dev in Terminal, nothing is returned. My ultimate goal is to be able to have npm run dev be successfully working so that my project can be available locally at localhost:3000.
When running yarn dev, I have the following error message
```` yarn run v1.22.22 warning package.json: No license field error Command "dev" not found. ````
I have tried to use Chat GPT to trouble shoot this issue, and they had me reinstall npm, etc, make sure I had the up to date version required for this project.