fix vulnerabilities
This commit is contained in:
parent
091280d4ad
commit
c014527c98
3 changed files with 3969 additions and 3682 deletions
59
package.json
59
package.json
|
@ -1,51 +1,34 @@
|
||||||
{
|
{
|
||||||
"name": "dashboard",
|
"name": "dashboard",
|
||||||
"version": "0.1.0",
|
"version": "1.0.0",
|
||||||
"private": true,
|
"repository": "git@github.com:phntxx/dashboard",
|
||||||
|
"contributors": [
|
||||||
|
"phntxx <hello@phntxx.com>"
|
||||||
|
],
|
||||||
|
"private": false,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@testing-library/jest-dom": "^4.2.4",
|
"@testing-library/jest-dom": "^5.11.10",
|
||||||
"@testing-library/react": "^9.3.2",
|
"@testing-library/react": "^11.2.5",
|
||||||
"@testing-library/user-event": "^7.1.2",
|
"@testing-library/user-event": "^13.0.6",
|
||||||
"@types/jest": "^24.0.0",
|
"@types/jest": "^26.0.22",
|
||||||
"@types/node": "^14.14.35",
|
"@types/node": "^14.14.37",
|
||||||
"@types/react-dom": "^16.9.8",
|
"@types/react-dom": "^17.0.3",
|
||||||
"@types/react-select": "^3.0.14",
|
"@types/react-select": "^4.0.13",
|
||||||
"@types/styled-components": "^5.1.1",
|
"@types/styled-components": "^5.1.9",
|
||||||
"http-server": "^0.12.3",
|
"react": "^17.0.2",
|
||||||
"npm-run-all": "^4.1.5",
|
"react-dom": "^17.0.2",
|
||||||
"react": "^16.13.1",
|
"react-scripts": "^4.0.3",
|
||||||
"react-dom": "^16.13.1",
|
"react-select": "^4.3.0",
|
||||||
"react-scripts": "3.4.1",
|
"styled-components": "^5.2.1",
|
||||||
"react-select": "^3.1.0",
|
"typescript": "^4.2.3"
|
||||||
"styled-components": "^5.1.1",
|
|
||||||
"typescript": "^3.9.6"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "react-scripts start",
|
"start": "react-scripts start",
|
||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"test": "react-scripts test",
|
"test": "react-scripts test",
|
||||||
"eject": "react-scripts eject",
|
"eject": "react-scripts eject"
|
||||||
"serveAppData": "http-server ./ -c-1",
|
|
||||||
"serveProductionApp": "http-server ./build --proxy http://localhost:8080 --port 3000",
|
|
||||||
"serve:dev": "npm-run-all --parallel serveAppData start",
|
|
||||||
"serve:production": "npm-run-all --parallel serveAppData serveProductionApp"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": "react-app"
|
"extends": "react-app"
|
||||||
},
|
|
||||||
"browserslist": {
|
|
||||||
"production": [
|
|
||||||
">0.2%",
|
|
||||||
"not dead",
|
|
||||||
"not op_mini all"
|
|
||||||
],
|
|
||||||
"development": [
|
|
||||||
"last 1 chrome version",
|
|
||||||
"last 1 firefox version",
|
|
||||||
"last 1 safari version"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/react": "^16.9.41"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,8 @@
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
"jsx": "react"
|
"jsx": "react",
|
||||||
|
"noFallthroughCasesInSwitch": true
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src"
|
"src"
|
||||||
|
|
Loading…
Reference in a new issue