-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
33 lines (33 loc) · 874 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
{
"name": "fake_payment_gateway",
"version": "1.0.0",
"description": "fake payment gateway for testing purpose",
"main": "./src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./src/app.js"
},
"author": "shalitha senanayaka",
"license": "MIT",
"dependencies": {
"@koa/cors": "^3.1.0",
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"generate-password": "^1.6.0",
"http-status-codes": "^2.1.4",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-combine-routers": "^4.0.2",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"nodemailer": "^6.6.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7",
"open-cli": "^6.0.1"
}
}