You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
590 B
31 lines
590 B
{
|
|
"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.19.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.17.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
}
|
|
}
|