-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.92 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
{
"name": "@mojaloop/quoting-bc",
"version": "0.6.0",
"description": "mojaloop quoting bounded context.",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/quoting-bc",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/quoting-bc/issues#readme"
},
"contributors": [
"Jason Bruwer <[email protected]>",
"Pedro Sousa Barreto <[email protected]>",
"Gonçalo Garcia <[email protected]>",
"José Antunes <[email protected]>",
"Rui Rocha <[email protected]>"
],
"scripts": {
"prepare": "husky install",
"pre_commit_check": "npm run build && npm run lint && npm run test:unit",
"build": "npm -ws run build",
"watch": "npm -ws run watch",
"clean": "(npm run clean:dist || true) && npm run clean:npm",
"clean:npm": "(rm -Rf node_modules || true) && npm -ws run clean:npm",
"clean:dist": "(rm -Rf dist || true) && npm -ws run clean:dist",
"pretest": "npm run build",
"lint": "npm -ws run lint",
"lint:fix": "npm -ws run lint:fix",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "npm -ws --if-present run test:unit",
"test:integration": "jest --runInBand --forceExit --detectOpenHandles",
"posttest": "npm run coverage:merge && npm run coverage:gen-report",
"coverage:merge": "nyc merge ./coverage/ ./coverage/coverage.json",
"coverage:gen-report": "nyc report --reporter=lcov --reporter=text --temp-dir=./coverage",
"audit:check": "npm audit",
"audit:resolve": "npm audit fix",
"dep:check": "(ncu -e 2 || true) && npm -ws run dep:check",
"dep:update": "(ncu -e 2 -u || true) && npm -ws run dep:update",
"start:quoting-svc": "npm -w packages/quoting-api-svc run start",
"start:command-handler-svc": "npm -w packages/command-handler-svc run start",
"start:event-handler-svc": "npm -w packages/event-handler-svc run start"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.15.13",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"npm-check-updates": "^16.10.19",
"nyc": "^15.1.0",
"tslib": "^2.5.3",
"supertest": "^6.3.4",
"ts-jest": "^29.1.5",
"typescript": "^5.0.4"
},
"workspaces": [
"packages/public-types-lib",
"packages/domain-lib",
"packages/quoting-config-lib",
"packages/implementations-lib",
"packages/event-handler-svc",
"packages/command-handler-svc",
"packages/quoting-api-svc",
"packages/shared-mocks-lib",
"packages/*"
],
"engines": {
"node": ">=20.10.0"
}
}