-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
161 lines (161 loc) · 5.76 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "quoting-service",
"description": "Quoting Service hosted by a scheme",
"license": "Apache-2.0",
"version": "16.0.1",
"author": "ModusBox",
"contributors": [
"Georgi Georgiev <[email protected]>",
"Henk Kodde <[email protected]>",
"James Bush <[email protected]>",
"Miguel de Barros <[email protected]>",
"Rajiv Mothilal <[email protected]>",
"Sam Kummary <[email protected]>",
"Shashikant Hirugade <[email protected]>",
"Steven Oderayi <[email protected]>",
"Vassilis Barzokas <[email protected]>",
"Juan Correa <[email protected]>"
],
"engines": {
"node": ">=18.x"
},
"main": "src/server.js",
"repository": {
"type": "git",
"url": "git://github.com/mojaloop/quoting-service.git"
},
"bugs": "http://github.com/mojaloop/quoting-service/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest-junit": {
"outputDirectory": "./test/results",
"outputName": "junit.xml"
},
"standard": {
"env": [
"jest"
]
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
},
"generator-swaggerize": {
"version": "4.11.0"
},
"pre-commit": [
"lint",
"dep:check",
"test:unit"
],
"scripts": {
"start": "npm run start:api",
"start:api": "node src/index.js",
"start:debug": "node --inspect=0.0.0.0 src/index.js",
"start:handlers": "node src/handlers/index.js h --quotes --bulk_quotes --fx_quotes",
"start:handlers:debug": "node --inspect=0.0.0.0 src/handlers/index.js h --quotes --bulk_quotes --fx_quotes",
"watch:api": "npx nodemon src/index.js",
"dev": "npm run docker:stop && docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d",
"lint": "npx standard",
"lint:fix": "npx standard --fix",
"test": "npm run test:unit",
"test:unit": "jest --testMatch '**/test/unit/**/*.test.js' ",
"test:coverage": "jest --coverage --coverageThreshold='{}' --testMatch '**/test/unit/**/*.test.js'",
"test:coverage-check": "jest --runInBand --forceExit --coverage --testMatch '**/test/unit/**/*.test.js'",
"test:junit": "jest --runInBand --forceExit --reporters=default --reporters=jest-junit --testMatch '**/test/unit/**/*.test.js'",
"test:int": "jest --runInBand --testMatch '**/test/integration/**/*.test.js'",
"regenerate": "yo swaggerize:test --framework hapi --apiPath './src/interface/swagger.json'",
"package-lock": "docker run --rm -it quoting-service:local cat package-lock.json > package-lock.json",
"run": "docker run -p 3002:3002 --rm --link db:mysql quoting-service:local",
"docker:build": "docker build --build-arg NODE_VERSION=\"$(cat .nvmrc)-alpine\" -t mojaloop/quoting-service:local -f ./Dockerfile .",
"docker:up": ". ./scripts/env.sh && docker-compose up -d",
"docker:stop": "docker-compose stop",
"docker:rm": "docker-compose rm -f -v",
"docker:down": "docker-compose down -v",
"docker:clean": "docker-compose down --rmi local",
"generate-docs": "npx jsdoc -c jsdoc.json",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"release": "npx standard-version --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'",
"wait-4-docker": "node ./scripts/_wait4_all.js"
},
"overrides": {
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"yargs-parser": "18.1.1",
"markdown-it": "12.3.2",
"postcss": "8.4.31"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"yargs-parser": "13.1.2",
"markdown-it": "12.3.2"
},
"yargs": {
"yargs-parser": "^21.1.1"
},
"eslint-config-standard": {
"eslint": "$eslint"
},
"jsonwebtoken": "9.0.0",
"jsonpointer": "5.0.0"
},
"dependencies": {
"@hapi/good": "9.0.1",
"@hapi/hapi": "21.3.12",
"@hapi/inert": "7.1.0",
"@hapi/vision": "7.0.3",
"@mojaloop/central-services-error-handling": "13.0.2",
"@mojaloop/central-services-health": "15.0.0",
"@mojaloop/central-services-logger": "11.5.1",
"@mojaloop/central-services-metrics": "12.4.2",
"@mojaloop/central-services-shared": "18.14.1",
"@mojaloop/central-services-stream": "11.4.1",
"@mojaloop/event-sdk": "14.1.1",
"@mojaloop/inter-scheme-proxy-cache-lib": "2.3.1",
"@mojaloop/ml-number": "11.2.4",
"@mojaloop/sdk-standard-components": "19.6.2",
"ajv": "8.17.1",
"ajv-keywords": "5.1.0",
"axios": "1.7.9",
"blipp": "4.0.2",
"commander": "12.1.0",
"event-stream": "4.0.1",
"fast-safe-stringify": "^2.1.1",
"good-console": "8.0.0",
"good-squeeze": "5.1.0",
"joi": "17.13.3",
"json-rules-engine": "5.0.2",
"knex": "3.1.0",
"memory-cache": "0.2.0",
"minimist": "1.2.8",
"mysql": "2.18.1",
"node-fetch": "3.3.2",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"eslint": "9.17.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-jest": "28.9.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"npm-check-updates": "17.1.11",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"replace": "^1.2.2",
"sinon": "19.0.2",
"standard": "17.1.2",
"standard-version": "9.5.0",
"swagmock": "1.0.0"
}
}