-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.26 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/participant-bc",
"version": "0.1.0",
"description": "mojaloop participant bounded context.",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/participant-bc",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/participant-bc/issues#readme"
},
"contributors": [
"Jason Bruwer <jason.bruwer@coil.com>"
],
"scripts": {
"prepare": "husky install",
"pre_commit_check": "npm run build && npm run lint && npm run test:unit",
"start:participants-svc": "npm -w @mojaloop/participants-bc-participants-svc run start",
"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 -p run lint",
"lint:fix": "npm -ws -p run lint:fix",
"build": "npm -ws -p run build",
"docker:build": "npm run build && docker build . -t \"mojaloop/participants-bc-participants-svc\"",
"clean-and-build": "npm run clean && npm run build",
"dep:check": "ncu -e 2; npm -ws run dep:check",
"dep:update": "ncu -e 2 -u; npm -ws run dep:update",
"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 --runInBand",
"start": "node ./packages/participants-svc/dist/application/index.js"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.3.3",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"npm-check-updates": "^16.10.19",
"nyc": "^15.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.2.5",
"typescript": "^5.1.6"
},
"workspaces": [
"packages/public-types-lib",
"packages/client-lib",
"packages/*"
],
"dependencies": {
"@types/multer": "^1.4.11",
"multer": "^1.4.5-lts.1"
},
"engines": {
"node": ">=20.10.0"
}
}