-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 830 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "angular-bank-backend",
"version": "1.0.0",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "8.11.4"
},
"author": "Ola Gontarz",
"repository": {
"type": "git",
"url": "https://github.com/olagontarz/online-banking-backend.git"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2"
},
"description": "A simple backend service for online bancking mockup application."
}