-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.46 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "tms-service",
"version": "0.0.1",
"description": "Node.js (TypeScript) HTTP Service for TMS FRM",
"engines": {
"node": ">=14"
},
"types": "build/index.d.ts",
"keywords": [
"mojaloop",
"frm"
],
"contributors": [
{
"name": "Joey Goksu",
"email": "[email protected]"
},
{
"name": "Theophilus Okwugwuni",
"email": "[email protected]"
}
],
"license": "ISC",
"scripts": {
"build": "tsc --project tsconfig.json && npm run copy-files",
"start": "node build/server",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"dev:debug": "ts-node-dev --transpile-only --respawn --inspect=4321 --project tsconfig.json ./src/server.ts",
"copy-files": "copyfiles mojaloop-api.yaml build/",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:eslint": "eslint --fix \"**/*.ts\"",
"fix:prettier": "prettier --write \"**/*.ts\"",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"**/*.ts\"",
"lint:prettier": "prettier --check \"**/*.ts\"",
"test": "jest --config=jest.config.ts --coverage",
"test:watch": "jest --config=jest.config.ts --watch",
"test:unit": "npm run test ./src",
"test:integration": "npm run test ./src --detectOpenHandles"
},
"dependencies": {
"@log4js-node/logstash-http": "^1.1.0",
"@types/axios": "^0.14.0",
"@types/koa": "^2.13.3",
"@types/koa-bodyparser": "^4.3.1",
"@types/koa-router": "^7.4.2",
"arangojs": "^7.5.0",
"axios": "^0.21.4",
"dotenv": "^10.0.0",
"elastic-apm-node": "^3.15.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"log4js": "^6.3.0",
"redis": "^3.1.2",
"supertest": "^6.1.3",
"swagger2": "^3.0.0",
"swagger2-koa": "^3.0.0"
},
"devDependencies": {
"@types/arangodb": "^3.5.12",
"@types/copyfiles": "^2.4.1",
"@types/dotenv": "^8.2.0",
"@types/elastic-apm-node": "^2.7.0",
"@types/eslint": "^7.28.0",
"@types/eslint-config-prettier": "^6.11.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.24",
"@types/koa": "^2.13.3",
"@types/koa-bodyparser": "^4.3.1",
"@types/log4js": "^2.3.5",
"@types/node": "^15.14.9",
"@types/prettier": "^2.4.0",
"@types/redis": "^2.8.29",
"@types/rimraf": "^3.0.2",
"@types/shelljs": "^0.8.9",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"copyfiles": "^2.4.1",
"dtslint": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sonarjs": "^0.7.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "4.3.8",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typedoc": "^0.20.37",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}