Make react-scripts devdependency to shut up audit.

The vulnerabilities are false positives and React doesn't think those
are worth fixing to make `npm audit` be quiet. We can at least make them
go away for `npm audit --production`, which is the official advice:
https://github.com/facebook/create-react-app/issues/11174.
This commit is contained in:
Dan Albert 2022-02-28 00:44:13 -08:00
parent abadfef5a7
commit 155f9d4052
2 changed files with 3502 additions and 1727 deletions

5219
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -4,10 +4,10 @@
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.7.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/jest": "^27.4.1",
"@types/node": "^12.20.46",
"@types/react": "^16.14.23",
"@types/react-dom": "^16.9.14",
@ -21,7 +21,6 @@
"react-esri-leaflet": "^1.3.1",
"react-leaflet": "^3.2.5",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"typescript": "~4.1.5"
},
"scripts": {
@ -47,6 +46,7 @@
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/leaflet": "^1.7.9"
"@types/leaflet": "^1.7.9",
"react-scripts": "5.0.0"
}
}