mirror of
https://github.com/docker/awesome-compose.git
synced 2025-11-12 11:24:10 +01:00
Bumps [qs](https://github.com/ljharb/qs) to 6.11.0 and updates ancestor dependencies [qs](https://github.com/ljharb/qs), [body-parser](https://github.com/expressjs/body-parser) and [express](https://github.com/expressjs/express). These dependencies need to be updated together. Updates `qs` from 6.7.0 to 6.11.0 - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](https://github.com/ljharb/qs/compare/v6.7.0...v6.11.0) Updates `body-parser` from 1.19.0 to 1.20.2 - [Release notes](https://github.com/expressjs/body-parser/releases) - [Changelog](https://github.com/expressjs/body-parser/blob/master/HISTORY.md) - [Commits](https://github.com/expressjs/body-parser/compare/1.19.0...1.20.2) Updates `express` from 4.17.1 to 4.19.2 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](https://github.com/expressjs/express/compare/4.17.1...4.19.2) --- updated-dependencies: - dependency-name: qs dependency-type: indirect - dependency-name: body-parser dependency-type: direct:production - dependency-name: express dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
752 B
JSON
31 lines
752 B
JSON
{
|
|
"name": "docker_node_mongo_starter",
|
|
"version": "1.0.0",
|
|
"description": "docker starter with node js and mongodb services",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"format": "prettier --write {**/,}*.js",
|
|
"lint": "prettier --check {**/,}*.js",
|
|
"dev": "nodemon server.js"
|
|
},
|
|
"author": "Syed Afzal",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bcryptjs": "^2.4.3",
|
|
"body-parser": "^1.20.2",
|
|
"cookie-parser": "^1.4.4",
|
|
"cors": "^2.8.4",
|
|
"express": "^4.19.2",
|
|
"lodash": "^4.17.13",
|
|
"mongodb": "^3.0.7",
|
|
"mongoose": "^6.0.9",
|
|
"simple-node-logger": "^18.12.23",
|
|
"validator": "^13.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.3",
|
|
"prettier": "^2.0.5"
|
|
}
|
|
}
|