-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "pagar-gateway",
"version": "1.0.0",
"description": "Gateway for payments with card",
"main": "./server/index.js",
"scripts": {
"start": "nodemon ./server/index.js",
"lint": "eslint --fix --ext .json,.js,.spec.js src test server",
"test": "mocha ./test/api --timeout 2000 --exit"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"koa": "^2.8.1",
"koa-body": "^4.1.1",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-cors": "^0.0.16",
"koa-router": "^7.4.0",
"moment": "^2.24.0",
"pg": "^7.12.1",
"require-all": "^3.0.0",
"uuid": "^3.3.2",
"validator": "^11.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"nock": "^11.3.4",
"nodemon": "^1.18.10",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2"
},
"author": "Gabriel Duarte Junior",
"license": "ISC"
}