This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.73 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
{
"name": "tms-service",
"version": "0.0.2",
"description": "Node.js (TypeScript) HTTP Service for TMS FRM",
"types": "build/server.d.ts",
"main": "build/server.js",
"keywords": [
"mojaloop",
"frm"
],
"contributors": [
{
"name": "Joey Goksu",
"email": "[email protected]"
},
{
"name": "Theophilus Okwugwuni",
"email": "[email protected]"
},
{
"name": "Jean-Pierre Nell"
}
],
"license": "ISC",
"engine": {
"node": ">= 16 < 18"
},
"scripts": {
"build": "tsc --project tsconfig.json && npm run copy-files",
"copy-files": "copyfiles ./swagger.yaml build/",
"start": "node -r dotenv/config build/server",
"cleanup": "rm -rf lib coverage jest.config.js.map node_modules package-lock.json",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"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\"",
"prepare": "husky install",
"test": "npm run copy-files && jest --config=jest.config.ts --passWithNoTests",
"test:watch": "jest --config=jest.config.ts --watch",
"test:unit": "npm run test ./src",
"test:integration": "npm run test ./src --detectOpenHandles"
},
"dependencies": {
"@frmscoe/frms-coe-lib": "^0.2.1",
"@frmscoe/frms-coe-startup-lib": "^0.0.14",
"@log4js-node/logstash-http": "^1.1.0",
"@types/koa": "^2.13.3",
"@types/koa-bodyparser": "^4.3.1",
"@types/koa-router": "^7.4.2",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.3",
"elastic-apm-node": "^3.15.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"koa2-swagger-ui": "^5.7.0",
"log4js": "^6.4.0",
"swagger2": "^3.0.0",
"swagger2-koa": "^4.0.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/elastic-apm-node": "^2.7.0",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.2",
"@types/prettier": "^2.4.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"husky": "8.0.3",
"jest": "^29.6.0",
"lint-staged": "^11.0.0",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}