generated from mojaloop/typescript-bc-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.52 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
{
"name": "@mojaloop/scheduling-bc",
"version": "0.0.1",
"description": "mojaloop scheduling bounded context ",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/scheduling-bc",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/scheduling-bc/issues#readme"
},
"contributors": [
"Miguel de Barros <miguel.debarros@modusbox.com>",
"Pedro Sousa Barreto <pedrosousabarreto@gmail.com>"
],
"scripts": {
"prepare": "husky install",
"pre_commit_check": "npm run build && npm run lint && npm run test:unit",
"start": "npm -ws run start",
"start:scheduling-svc": "npm -w packages/scheduling-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",
"build": "npm -ws run build",
"watch": "npm -ws run watch",
"clean": "npm run clean:dist; npm run clean:npm",
"clean:npm": "rm -Rf node_modules; npm -ws run clean:npm",
"clean:dist": "rm -Rf dist; npm -ws run clean:dist",
"lint": "npm -ws run lint",
"lint:fix": "npm -ws run lint:fix",
"test": "npm run test:unit",
"test:unit": "npm -ws --if-present run test:unit",
"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",
"test:integration": "jest --detectOpenHandles --forceExit",
"audit:check": "npm audit",
"audit:resolve": "npm audit fix",
"dep:check": "ncu -e 2; npm -ws run dep:check",
"dep:update": "ncu -e 2 -u; npm -ws run dep:update",
"publish:public-types-lib": "npm -w @mojaloop/scheduling-bc-public-types-lib run pub"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"npm-check-updates": "^16.6.5",
"nyc": "^15.1.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/public-types-lib",
"packages/domain-lib",
"packages/implementations-lib",
"packages/*"
],
"engines": {
"node": ">=20.10.0"
}
}