Tao Bojlén 2020-10-06 13:51:34 +00:00
parent f5daa648f7
commit 2eb7ea98d1
3 changed files with 11936 additions and 239 deletions

9920
frontend/.snyk Normal file

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,9 @@
"lint:fix": "yarn lint --fix", "lint:fix": "yarn lint --fix",
"pretty": "prettier --write \"src/**/*.{ts,tsx}\"", "pretty": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "yarn lint && react-scripts test --ci", "test": "yarn lint && react-scripts test --ci",
"eject": "react-scripts eject" "eject": "react-scripts eject",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
}, },
"husky": { "husky": {
"hooks": { "hooks": {
@ -32,11 +34,11 @@
"@blueprintjs/select": "^3.12.3", "@blueprintjs/select": "^3.12.3",
"classnames": "^2.2.6", "classnames": "^2.2.6",
"connected-react-router": "^6.5.2", "connected-react-router": "^6.5.2",
"cross-fetch": "^3.0.4", "cross-fetch": "^3.0.6",
"cytoscape": "^3.15.0", "cytoscape": "^3.15.0",
"cytoscape-popper": "^1.0.7", "cytoscape-popper": "^1.0.7",
"inflection": "^1.12.0", "inflection": "^1.12.0",
"lodash": "^4.17.15", "lodash": "^4.17.20",
"moment": "^2.25.3", "moment": "^2.25.3",
"normalize.css": "^8.0.0", "normalize.css": "^8.0.0",
"numeral": "^2.0.6", "numeral": "^2.0.6",
@ -44,14 +46,14 @@
"react-dom": "^16.10.2", "react-dom": "^16.10.2",
"react-redux": "^7.1.1", "react-redux": "^7.1.1",
"react-router-dom": "^5.2.0", "react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-sigma": "^1.2.30", "react-sigma": "^1.2.30",
"react-virtualized": "^9.21.1", "react-virtualized": "^9.21.1",
"redux": "^4.0.4", "redux": "^4.0.4",
"redux-thunk": "^2.3.0", "redux-thunk": "^2.3.0",
"sanitize-html": "^1.20.1", "sanitize-html": "^2.0.0",
"styled-components": "^5.1.0", "styled-components": "^5.1.0",
"tippy.js": "^4.3.5" "tippy.js": "^4.3.5",
"snyk": "^1.410.0"
}, },
"devDependencies": { "devDependencies": {
"@types/classnames": "^2.2.9", "@types/classnames": "^2.2.9",
@ -81,6 +83,7 @@
"lint-staged": "^10.2.4", "lint-staged": "^10.2.4",
"prettier": "^2.0.5", "prettier": "^2.0.5",
"react-axe": "3.3.0", "react-axe": "3.3.0",
"react-scripts": "3.4.3",
"typescript": "^3.9.2" "typescript": "^3.9.2"
}, },
"browserslist": [ "browserslist": [
@ -88,5 +91,6 @@
"not dead", "not dead",
"not ie <= 11", "not ie <= 11",
"not op_mini all" "not op_mini all"
] ],
"snyk": true
} }

File diff suppressed because it is too large Load Diff