mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-31 10:21:49 +02:00
Bumps [express](https://github.com/expressjs/express) from 4.18.2 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.18.2...4.19.2) --- updated-dependencies: - 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.19.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
}
|
|
}
|