-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
{
"name": "tms-service",
"version": "1.2.0",
"description": "transaction monitoring service",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json && npm run copy-files",
"copy-files": "copyfiles ./swagger.yaml build/",
"start": "node -r dotenv/config build/index.js",
"clean": "npx rimraf build node_modules coverage package-lock.json",
"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:eslint-unused": "eslint --report-unused-disable-directives \"**/*.ts\"",
"lint:eslint-no-inline": "eslint --no-inline-config \"**/*.ts\"",
"lint:prettier": "prettier --check \"**/*.ts\"",
"prepare": "husky",
"test": "jest --config=jest.config.ts --passWithNoTests --forceExit",
"test:watch": "jest --config=jest.config.ts --watch"
},
"keywords": [
"mojaloop",
"tazama",
"frm"
],
"contributors": [
{
"name": "Len Bekker"
},
{
"name": "Jean-Pierre Nell"
}
],
"license": "Apache-2.0",
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/response-validation": "^2.6.0",
"@fastify/swagger": "^8.8.0",
"@fastify/swagger-ui": "^3.0.0",
"@tazama-lf/auth-lib": "^0.0.9",
"@tazama-lf/frms-coe-lib": "5.0.0",
"@tazama-lf/frms-coe-startup-lib": "2.3.0",
"ajv": "^8.16.0",
"arangojs": "^8.8.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.3",
"fastify": "^4.27.0",
"ioredis": "^5.4.1",
"node-cache": "^5.1.2",
"swagger2": "^4.0.3",
"tslib": "^2.6.3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-love": "^52.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"husky": "^9.0.11",
"ioredis-mock": "^8.7.0",
"jest": "^29.5.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}