Merge pull request #32 from glours/security_issues_express_backend

Fix security issues in npm dependencies of react-express-mysql sample
This commit is contained in:
Guillaume LOURS 2020-03-25 15:54:21 +01:00 committed by GitHub
commit df60da7605
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1055 additions and 1163 deletions

2202
react-express-mysql/backend/package-lock.json generated Executable file → Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{ {
"name": "node-docker-good-defaults", "name": "node-docker-good-defaults",
"private": true, "private": true,
"version": "2.0.0", "version": "2.0.1",
"description": "Node.js Hello world app using docker features for easy docker-compose local dev and solid production defaults", "description": "Node.js Hello world app using docker features for easy docker-compose local dev and solid production defaults",
"author": "Bret Fisher <bret@bretfisher.com>", "author": "Bret Fisher <bret@bretfisher.com>",
"main": "src/index.js", "main": "src/index.js",
@ -14,16 +14,16 @@
"test-wait-debuger": "cross-env NODE_ENV=test PORT=8081 mocha --no-timeouts --exit --inspect-brk=0.0.0.0:9230" "test-wait-debuger": "cross-env NODE_ENV=test PORT=8081 mocha --no-timeouts --exit --inspect-brk=0.0.0.0:9230"
}, },
"dependencies": { "dependencies": {
"express": "^4.16.3", "express": "^4.17.1",
"knex": "^0.20.13", "knex": "^0.20.13",
"morgan": "^1.8.1", "morgan": "^1.10.0",
"mysql2": "^2.1.0" "mysql2": "^2.1.0"
}, },
"devDependencies": { "devDependencies": {
"chai": "^4.1.2", "chai": "^4.2.0",
"chai-http": "^4.0.0", "chai-http": "^4.3.0",
"cross-env": "^5.1.4", "cross-env": "^7.0.2",
"mocha": "^5.0.5", "mocha": "^7.1.1",
"nodemon": "^1.17.5" "nodemon": "^2.0.2"
} }
} }