-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
100 lines (100 loc) · 4.94 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
{
"name": "@mojaloop/sdk-scheme-adapter",
"version": "23.5.1",
"description": "mojaloop sdk-scheme-adapter",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/sdk-scheme-adapter",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/sdk-scheme-adapter/issues#readme"
},
"contributors": [
"Kamuela Franco <[email protected]>",
"Steven Oderayi <[email protected]>",
"Valentin Genev <[email protected]>",
"Shashikant Hirugade <[email protected]>",
"Paweł Marzec <[email protected]>",
"Kevin Leyow <[email protected]",
"Miguel de Barros <[email protected]>",
"Yevhen Kyriukha <[email protected]>",
"Vijay Kumar Guthi <[email protected]>"
],
"packageManager": "[email protected]",
"engines": {
"yarn": "3.2.0"
},
"workspaces": [
"modules/*"
],
"scripts": {
"postinstall": "yarn husky install",
"start": "nx run-many --output-style=stream --parallel --target=start",
"start:api-svc": "yarn workspace @mojaloop/sdk-scheme-adapter-api-svc run start",
"start:event-handler": "yarn workspace @mojaloop/sdk-scheme-adapter-outbound-domain-event-handler run start",
"start:command-handler": "yarn workspace @mojaloop/sdk-scheme-adapter-outbound-command-event-handler run start",
"build": "nx run-many --all --target=build",
"build:affected": "nx affected --target=build",
"build:no-cache": "nx run-many --all --target=build --skip-nx-cache",
"build:openapi": "yarn workspace @mojaloop/sdk-scheme-adapter-api-svc run build:openapi",
"build:openapi:inbound": "yarn workspace @mojaloop/sdk-scheme-adapter-api-svc run build:openapi:inbound",
"validate:api": "yarn workspace @mojaloop/sdk-scheme-adapter-api-svc run validate:api",
"validate:api-sequence-diagram": "node ./scripts/validate-api-sequence-diagram.js",
"watch": "nx run-many --parallel --all --target=watch",
"clean": "yarn run clean:dist && yarn run clean:npm",
"clean:npm": "nx run-many --parallel --all --target=clean:npm",
"clean:dist": "nx run-many --parallel --all --target=clean:dist --skip-nx-cache",
"lint": "nx run-many --parallel --all --target=lint",
"lint:affected": "nx affected --parallel --target=lint",
"lint:fix": "yarn run lint -- --fix",
"lint:fix:affected": "yarn run lint:affected -- --fix",
"test": "yarn run test:unit",
"test:unit": "nx run-many --parallel --all --target=test:unit -- --detectOpenHandles",
"test:unit:no-cache": "yarn run test:unit --skip-nx-cache",
"test:unit:affected": "nx affected --parallel --target=test:unit",
"test:coverage": "nx run-many --parallel --all --target=test:coverage",
"test:coverage:affected": "nx affected --parallel --target=test:coverage",
"test:coverage-check": "nx run-many --parallel --all --target=test:coverage-check",
"test:coverage-check:affected": "nx affected --parallel --target=test:coverage-check",
"test:integration": "nx run-many --parallel --all --target=test:integration",
"test:integration:affected": "nx affected --parallel --target=test:integration",
"audit:check": "yarn dlx audit-ci --config ./audit-ci.jsonc",
"dep:check": "yarn ncu -e 2 && nx run-many --parallel --all --target=dep:check --output-style=static",
"dep:update": "yarn ncu -u && nx run-many --parallel --all --target=dep:update --output-style=static",
"release": "yarn run release:modules -- --skip.tag --skip.commit && standard-version --commit-all --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"release:modules": "nx affected --parallel --target=release",
"snapshot": "yarn run snapshot:modules -- --skip.tag --skip.commit && standard-version --commit-all --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'",
"snapshot:modules": "nx affected --parallel --target=snapshot",
"wait-4-docker": "node ./scripts/_wait4_all.js"
},
"dependencies": {
"nx": "16.5.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/node-cache": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"audit-ci": "^6.6.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "latest",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"npm-check-updates": "^16.7.10",
"replace": "^1.2.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"yarn-audit-fix": "^10.0.7"
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md",
"precommit": "git add **/*package.json"
}
}
}