-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
100 lines (100 loc) · 3.43 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "2wp-api",
"version": "2.2.0",
"description": "Two Way Peg API",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16"
},
"scripts": {
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"rebuild": "npm run clean && npm run build",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"precoverage": "npm run unit-test",
"coverage": "lb-nyc report --reporter=text --reporter=lcov",
"only-coverage": "lb-nyc report --reporter=lcov",
"pretest": "npm run rebuild",
"test": "npm run unit-test",
"posttest": "npm run lint",
"test:dev": "lb-nyc mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"unit-test": "npm run pretest && lb-nyc mocha --recursive 'dist/__tests__/**/*.unit.js' --timeout 10000",
"premigrate": "npm run rebuild",
"migrate": "node ./dist/migrate",
"preopenapi-spec": "npm run rebuild",
"openapi-spec": "node ./dist/openapi-spec",
"prestart": "npm run rebuild",
"start": "node -r source-map-support/register .",
"start-api": "npm run start -- --appmode=API",
"start-daemon": "npm run start -- --appmode=DAEMON"
},
"repository": {
"type": "git",
"url": ""
},
"author": "IOVLabs",
"license": "",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^6.1.3",
"@loopback/core": "^5.1.3",
"@loopback/repository": "^6.1.3",
"@loopback/rest": "^13.1.3",
"@loopback/rest-explorer": "^6.1.3",
"@loopback/service-proxy": "^6.1.3",
"@rsksmart/bridge-state-data-parser": "git+https://github.com/rsksmart/bridge-state-data-parser.git#allow-block-argument",
"@rsksmart/rsk-precompiled-abis": "^6.0.0-ARROWHEAD",
"big.js": "^6.1.1",
"bitcoinjs-lib": "^6.0.1",
"bridge-transaction-parser": "git+https://github.com/rsksmart/bridge-transaction-parser.git#v0.5.0-beta",
"bs58": "^5.0.0",
"dotenv": "^8.6.0",
"jssha": "^3.2.0",
"log4js": "^6.6.1",
"loopback-connector-kv-redis": "^4.0.0",
"loopback-connector-rest": "^4.0.3",
"mongoose": "^7.5.3",
"pegin-address-verificator": "https://[email protected]/rsksmart/pegin-address-verifier#0.3.0",
"pegin-cap-evaluator": "https://[email protected]/rsksmart/pegin-cap-evaluator#1.0.0",
"tslib": "^2.0.0",
"web3": "^1.5.2",
"web3-eth": "^1.10.2",
"web3-eth-contract": "^1.3.4",
"web3-utils": "^1.3.4"
},
"devDependencies": {
"@loopback/build": "^10.1.3",
"@loopback/eslint-config": "^14.0.4",
"@loopback/testlab": "^6.1.3",
"@types/big.js": "^6.1.2",
"@types/bs58": "^4.0.1",
"@types/node": "^16.18.50",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.26.0",
"sinon": "^11.1.2",
"sonarqube-scanner": "^3.0.1",
"source-map-support": "^0.5.21",
"typescript": "~5.2.2"
}
}