Skip to content
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
8 changes: 8 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 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:
- mongoose > async > lodash:
patched: '2020-05-01T04:42:56.224Z'
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"e2e": "ng e2e",
"delete-directories": "[ -d node_modules ] && { rimraf node_modules doc dist; } || echo 'node_modules already deleted'",
"clean": "npm run delete-directories && command -v yarn >/dev/null && { yarn cache clean; } || { npm cache clean; }",
"clean-install": "npm run clean && command -v yarn >/dev/null && { yarn install; } || { npm install; }"
"clean-install": "npm run clean && command -v yarn >/dev/null && { yarn install; } || { npm install; }",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"private": true,
"dependencies": {
Expand Down Expand Up @@ -41,7 +43,8 @@
"rxjs": "^5.5.6",
"serve-favicon": "^2.4.5",
"web-animations-js": "^2.3.1",
"zone.js": "^0.8.19"
"zone.js": "^0.8.19",
"snyk": "^1.316.1"
},
"devDependencies": {
"@angular/cli": "1.6.3",
Expand All @@ -65,5 +68,6 @@
"ts-node": "~4.1.0",
"tslint": "~5.8.0",
"typescript": "~2.5.3"
}
},
"snyk": true
}