-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.41 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "channel-router",
"version": "0.1.0",
"description": "channel-router",
"main": "build/index.js",
"scripts": {
"dev": "env $(cat .env.template) nodemon",
"build": "tsc",
"start": "node build/index.js",
"cleanup": "rm -rf build template jest.config.js jest.config.js.map node_modules",
"fix": "yarn fix:prettier && yarn fix:eslint",
"fix:eslint": "eslint --fix \"**/*.ts\"",
"fix:prettier": "prettier --write \"**/*.ts\"",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"**/*.ts\"",
"lint:prettier": "prettier --check \"**/*.ts\"",
"test": "jest --config=jest.config.ts --passWithNoTests",
"test:watch": "jest --config=jest.config.ts --watch",
"test:unit": "yarn test ./src/test/unit",
"test:integration": "yarn test ./src/test/integration --detectOpenHandles"
},
"keywords": [
"mojaloop",
"frm"
],
"contributors": [
{
"name": "Aaron Reynoza",
"email": "[email protected]"
},
{
"name": "Joey Goksu",
"email": "[email protected]"
}
],
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"elastic-apm-node": "^3.14.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0"
},
"devDependencies": {
"@types/elastic-apm-node": "^2.7.0",
"@types/jest": "^26.0.23",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.2",
"@types/node": "^14.14.43",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix \"**/*.ts\"",
"prettier --write \"**/*.ts\""
]
}
}