generated from mojaloop/typescript-bc-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (63 loc) · 2.4 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
{
"name": "@mojaloop/platform-configuration-bc",
"version": "0.0.1",
"description": "mojaloop platform configuration bounded context.",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/platform-configuration-bc",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/platform-configuration-bc/issues#readme"
},
"contributors": [
"Pedro Sousa Barreto <pedrosousabarreto@gmail.com>"
],
"scripts": {
"prepare": "husky install",
"pre_commit_check": "npm run build && npm run lint && npm run test:unit",
"start:configuration-svc": "npm -w @mojaloop/platform-configuration-bc-configuration-svc run service",
"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",
"pretest": "echo 'FIX ME'",
"standard": "npm run --no-progress --stream lint'",
"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",
"audit:resolve": "npm -ws run audit:resolve",
"audit:check": "npm -ws run audit:check",
"dep:check": "(ncu -e 2 || true) && npm -ws run dep:check",
"dep:update": "(ncu -e 2 -u || true) && npm -ws run dep:update"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"npm-check-updates": "~16.14.20",
"nyc": "^15.1.0",
"ts-jest": "^29.1.4",
"typescript": "^5.3.3",
"tslib": "^2.6.3"
},
"workspaces": [
"packages/public-types-lib",
"packages/domain-lib",
"packages/*"
],
"engines": {
"node": ">=20.10.0"
},
"dependencies": {
"mongodb": "^5.5.0"
}
}