mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-31 10:21:49 +02: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 - [Release notes](https://github.com/ljharb/qs/releases) - [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.1 - [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.1) Updates `express` from 4.17.1 to 4.18.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.18.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
590 B
JSON
31 lines
590 B
JSON
{
|
|
"name": "bank-api",
|
|
"version": "1.0.0",
|
|
"description": "Bank API",
|
|
"private": true,
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"lint": "eslint",
|
|
"format": "prettier --single-quote --write *.js"
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Yohan Lasorsa",
|
|
"url": "https://twitter.com/sinedied"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"eslint": "^7.5.0",
|
|
"prettier": "^2.0.5"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.20.1",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
}
|
|
}
|