Skip to content
This repository was archived by the owner on Jan 7, 2021. It is now read-only.

[Snyk] Fix for 1 vulnerabilities #7

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/server/.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:
- express-winston > lodash:
patched: '2020-05-01T08:44:44.916Z'
- http-proxy-middleware > lodash:
patched: '2020-05-01T08:44:44.916Z'
- inquirer > lodash:
patched: '2020-05-01T08:44:44.916Z'
- inquirer-autocomplete-prompt > inquirer > lodash:
patched: '2020-05-01T08:44:44.916Z'
- pm2 > async > lodash:
patched: '2020-05-01T08:44:44.916Z'
- pm2 > pm2-deploy > async > lodash:
patched: '2020-05-01T08:44:44.916Z'
10 changes: 7 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"local": "cross-env NODE_ENV=production API_ENV=release nodemon ./index.js",
"stage": "pm2 startOrReload ecosystem.config.js --env stage",
"pre": "pm2 startOrReload ecosystem.config.js --env pre",
"release": "pm2 startOrReload ecosystem.config.js --env release"
"release": "pm2 startOrReload ecosystem.config.js --env release",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"axios": "^0.16.2",
Expand All @@ -37,6 +39,8 @@
"pm2": "^2.5.0",
"serve-favicon": "^2.4.3",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
}
"winston-daily-rotate-file": "^1.4.6",
"snyk": "^1.316.1"
},
"snyk": true
}