-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.69 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
81
{
"name": "kst-lab-hancock-ms-dlt-adapter",
"version": "7.0.4",
"description": "DLT adapter to interact with DLT networks",
"main": "index.js",
"authors": [
"BBVA NDB - R&D Team"
],
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"change-case": "^4.1.2",
"compression": "^1.7.4",
"config": "^1.29.2",
"cors": "^2.8.5",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.0.8",
"express": "^4.17.1",
"express-jsonschema": "^1.1.6",
"express-validator": "^6.9.2",
"js-yaml": "^4.0.0",
"method-override": "^3.0.0",
"mongodb": "^3.6.4",
"pino": "^6.11.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"semaphore": "^1.1.0",
"solc": "^0.8.1",
"web3": "^1.3.4",
"web3-provider-engine": "^16.0.1",
"xtend": "^4.0.2"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/config": "^0.0.38",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/mongodb": "3.6.6",
"@types/pino": "^6.3.5",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"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"
},
"engines": {
"node": ">=13.2.0"
},
"scripts": {
"start": "npm run serve:dev",
"serve:dev": "concurrently \"npm run watch:ts\" \"sleep 3 && 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",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"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",
"yamlApi2html": "api2html -o ./documentation/api.html --raw -c raml/logo.png -l http raml/api.yaml",
"docs": "npm run clean:docs && npm run md2html && npm run yamlApi2html",
"deploy:gh": "push-dir --dir=documentation --branch=gh-pages --cleanup --remote github"
}
}