A react project of the company, which has been reporting errors after running npm run dev, with pictures

A react project of the company that has installed node and npm
"scripts": {

"dev": "node server.js",
"build": "next build",
"start": "HK_NODE_ENV=production node server.js"

},

under the project, run npm install
and install the related dependency package
but keep reporting errors. What is the reason for this?
"styled-jsx-plugin-sass": "^ 0.2.2"

installing styled-jsx once did not solve the problem.
Please attach the detailed solution steps if you have experience. Thank you.

Mar.03,2021

if the project was running normally.
so:
delete node_modules
delete package-lock.json
re npm I


dependency not installed successfully:
ps: is your npm directly linked to Taobao image? (personally not recommended)
if not, it may be due to npm installation time being too long and so on. Try cnpm
npm install-g cnpm-- registry= https://registry.npm.taobao.org
(ps:.nodejsnode_global configuration first, but not set it)
and add this path under the system variable path to test cnpm, successfully: cnpm-v

cnpm install

Menu