Skip to content
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.

[Snyk] Fix for 1 vulnerabilities #144

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions packages/frontend/.snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.14.1
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
SNYK-JS-LODASH-567746:
- antd > lodash:
patched: '2020-05-01T07:04:03.396Z'
- antd > rc-form > lodash:
patched: '2020-05-01T07:04:03.396Z'
- antd > rc-steps > lodash:
patched: '2020-05-01T07:04:03.396Z'
- antd > rc-table > lodash:
patched: '2020-05-01T07:04:03.396Z'
- antd > rc-tabs > lodash:
patched: '2020-05-01T07:04:03.396Z'
- antd > rc-editor-mention > rc-editor-core > lodash:
patched: '2020-05-01T07:04:03.396Z'
10 changes: 7 additions & 3 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"react-router-dom": "^4.3.1",
"uuid": "^3.2.1",
"vega-lib": "^4.2.0",
"whatwg-fetch": "3.0.0"
"whatwg-fetch": "3.0.0",
"snyk": "^1.316.1"
},
"author": {
"name": "Florian Richter"
Expand All @@ -43,7 +44,9 @@
"start": "parcel public/index.html --no-hmr --log-level 2",
"lint": "tslint -p . --fix",
"build": "parcel build public/index.html --no-cache --log-level 1",
"clean": "rm -rf build node_modules dist .cache"
"clean": "rm -rf build node_modules dist .cache",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
Expand Down Expand Up @@ -71,5 +74,6 @@
},
"sw-precache": {
"maximumFileSizeToCacheInBytes": 10485760
}
},
"snyk": true
}