"build": "npm build",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install"
"build": "npm build",
#cleans/removes node modules
"clean": "rm -rf node_modules", npm ci
#first removes node_modules and then re-install it!
"reinstall": "npm run clean && npm install"