-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
180 lines (180 loc) · 6.71 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "@mojaloop/central-ledger",
"version": "17.7.8",
"description": "Central ledger hosted by a scheme to record and settle transfers",
"license": "Apache-2.0",
"author": "ModusBox",
"contributors": [
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
"Georgi Logodazhki <georgi.logodazhki@modusbox.com>",
"Henk Kodde <henkkodde@modusbox.com>",
"Kevin Leyow <kevin.leyow@modusbox.com>",
"Lazola Lucas <lazola.lucas@modusbox.com>",
"Lewis Daly <lewisd@crosslaketech.com>",
"Miguel de Barros <miguel.debarros@modusbox.com>",
"Paweł Marzec <pawel.marzec@modusbox.com>",
"Rajiv Mothilal <rajiv.mothilal@modusbox.com>",
"Sam Kummary <sam@modusbox.com>",
"Shashikant Hirugade <shashikant.hirugade@modusbox.com>",
"Steven Oderayi <steven.oderayi@modusbox.com>",
"Valentin Genev <valentin.genev@modusbox.com>",
"Aaron Reynoza <aaron.reynoza@infitx.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:mojaloop/central-ledger.git"
},
"imports": {
"#src/*": "./src/*.js",
"#test/*": "./test/*.js"
},
"pre-commit": [
"lint",
"dep:check",
"test"
],
"scripts": {
"start": "npm run start:api",
"start:api": "node src/api/index.js",
"watch:api": "npx nodemon src/api/index.js",
"start:handlers": "node src/handlers/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:spec",
"test:unit": "npx tape 'test/unit/**/*.test.js'",
"test:unit:spec": "npm run test:unit | tap-spec",
"test:xunit": "npm run test:unit | tap-xunit > ./test/results/xunit.xml",
"test:coverage": "npx nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"test:int": "npx tape 'test/integration/**/*.test.js' ",
"test:int-override": "npx tape 'test/integration-override/**/*.test.js'",
"test:int:spec": "npm run test:int | npx tap-spec",
"test:xint": "npm run test:int | tap-xunit > ./test/results/xunit-integration.xml",
"test:xint-override": "npm run test:int-override | tap-xunit > ./test/results/xunit-integration-override.xml",
"test:integration": "sh ./test/scripts/test-integration.sh",
"test:functional": "sh ./test/scripts/test-functional.sh",
"migrate": "npm run migrate:latest && npm run seed:run",
"migrate:latest": "npx knex $npm_package_config_knex migrate:latest",
"migrate:create": "npx knex migrate:make $npm_package_config_knex",
"migrate:rollback": "npx knex migrate:rollback $npm_package_config_knex",
"migrate:current": "npx knex migrate:currentVersion $npm_package_config_knex",
"seed:run": "npx knex seed:run $npm_package_config_knex",
"docker:build": "docker build --build-arg NODE_VERSION=\"$(cat .nvmrc)-alpine\" -t mojaloop/central-ledger:local .",
"docker:up": "docker-compose -f docker-compose.yml up",
"docker:up:backend": "docker-compose up -d ml-api-adapter mysql mockserver kafka kowl temp_curl",
"docker:up:int": "docker compose up -d kafka init-kafka objstore mysql",
"docker:script:populateTestData": "sh ./test/util/scripts/populateTestData.sh",
"docker:stop": "docker-compose -f docker-compose.yml stop",
"docker:rm": "docker-compose -f docker-compose.yml rm -f -v",
"docker:down": "docker-compose -f docker-compose.yml down -v",
"docker:clean": "docker-compose -f docker-compose.yml 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"
},
"dependencies": {
"@hapi/good": "9.0.1",
"@hapi/hapi": "21.3.10",
"@hapi/basic": "7.0.2",
"@hapi/inert": "7.1.0",
"@hapi/joi": "17.1.1",
"@hapi/vision": "7.0.3",
"@hapi/catbox-memory": "6.0.2",
"@mojaloop/database-lib": "11.0.5",
"@mojaloop/central-services-error-handling": "13.0.1",
"@mojaloop/central-services-health": "15.0.0",
"@mojaloop/central-services-logger": "11.3.1",
"@mojaloop/central-services-metrics": "12.0.8",
"@mojaloop/central-services-shared": "18.3.8",
"@mojaloop/central-services-stream": "11.3.1",
"@mojaloop/event-sdk": "14.1.1",
"@mojaloop/ml-number": "11.2.4",
"@mojaloop/object-store-lib": "12.0.3",
"@now-ims/hapi-now-auth": "2.1.0",
"ajv": "8.16.0",
"ajv-keywords": "5.1.0",
"base64url": "3.0.1",
"blipp": "4.0.2",
"commander": "12.1.0",
"cron": "3.1.7",
"decimal.js": "10.4.3",
"docdash": "2.0.2",
"event-stream": "4.0.1",
"five-bells-condition": "5.0.1",
"glob": "10.4.1",
"hapi-auth-bearer-token": "8.0.0",
"hapi-swagger": "17.2.1",
"ilp-packet": "2.2.0",
"knex": "3.1.0",
"lodash": "4.17.21",
"moment": "2.30.1",
"mongo-uri-builder": "^4.0.0",
"rc": "1.2.8",
"require-glob": "^4.1.0"
},
"optionalDependencies": {
"mysql": "2.18.1"
},
"devDependencies": {
"async-retry": "1.3.3",
"audit-ci": "^7.0.1",
"get-port": "5.1.1",
"jsdoc": "4.0.3",
"jsonpath": "1.1.1",
"nodemon": "3.1.3",
"npm-check-updates": "16.14.20",
"nyc": "17.0.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"replace": "^1.2.2",
"sinon": "17.0.0",
"standard": "17.1.0",
"standard-version": "^9.5.0",
"tap-spec": "^5.0.0",
"tap-xunit": "2.4.1",
"tape": "4.16.2",
"tapes": "4.1.0"
},
"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"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"yargs-parser": "13.1.2",
"markdown-it": "12.3.2"
},
"@now-ims/hapi-now-auth": {
"@hapi/hoek": "9.0.3"
},
"jsonwebtoken": "9.0.0",
"jsonpointer": "5.0.0"
},
"config": {
"knex": "--knexfile ./config/knexfile.js",
"images": {
"api": "central-ledger",
"admin": "central-ledger-admin"
}
},
"standard": {
"ignore": [
"/migrations/**"
]
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}