-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.58 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
{
"name": "hancock-dlt-broker",
"version": "9.2.0",
"description": "Hancock DLT Broker",
"main": "index.js",
"scripts": {
"start": "npm run serve:dev",
"serve:dev": "concurrently \"npm run watch:ts\" \"sleep 5 && npm run serve:debug\"",
"serve:prod": "node dist/index.js | pino -c --errorProps '*'",
"serve:debug": "nodemon --inspect=0.0.0.0 dist/index.js | pino -c --errorProps '*'",
"build:ts": "tsc",
"watch:ts": "tsc -w --inlineSources --inlineSourceMap",
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"clean:docs": "rimraf documentation && mkdirp documentation",
"raml2md": "raml2html --theme raml2html-markdown-theme raml/api.raml > documentation/api.md",
"raml2html": "raml2html raml/api.raml > documentation/api.html",
"md2html": "generate-md --layout github --input ./README.md --output ./documentation",
"asyncApi2html": "api2html -o ./documentation/api.html --raw -c raml/logo.png -l http raml/asyncapi.yaml",
"docs": "npm run clean:docs && npm run md2html && npm run asyncApi2html",
"deploy:gh": "push-dir --dir=documentation --branch=gh-pages --cleanup --remote github"
},
"repository": {
"type": "git",
"url": "https://github.com/BBVA/hancock-dlt-broker.git"
},
"keywords": [
"hancock",
"dlt",
"broker"
],
"author": "BBVA NDB - R&D Team",
"license": "ISC",
"devDependencies": {
"@types/config": "0.0.33",
"@types/express": "4.17.11",
"@types/jest": "26.0.20",
"@types/jsonwebtoken": "8.5.0",
"@types/mongodb": "3.6.6",
"@types/pino": "6.3.5",
"@types/request": "2.48.5",
"@types/request-promise-native": "1.0.17",
"@types/uuid": "8.3.0",
"@types/ws": "7.4.0",
"api2html": "^0.4.0",
"concurrently": "5.3.0",
"jest": "26.6.3",
"jest-junit": "12.0.0",
"markdown-styles": "3.1.10",
"mkdirp": "1.0.4",
"nodemon": "2.0.7",
"push-dir": "^0.4.1",
"raml2html": "7.7.0",
"raml2html-markdown-theme": "1.0.2",
"rimraf": "3.0.2",
"ts-jest": "26.5.1",
"tslint": "6.1.3",
"typescript": "4.1.4"
},
"dependencies": {
"@types/socket.io-client": "1.4.35",
"config": "1.29.2",
"express": "4.17.1",
"js-yaml": "4.0.0",
"jsonschema": "1.4.0",
"jsonwebtoken": "8.5.1",
"mongodb": "3.6.4",
"node-forge": "0.10.0",
"pino": "6.11.1",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"socket.io-client": "3.1.1",
"uuid": "8.3.2",
"web3": "1.3.4",
"ws": "7.4.3"
}
}