forked from rsksmart/rif-relay-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.5 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
{
"name": "rif-relay-server",
"version": "1.0.0",
"description": "This project contains all the server code for the rif relay system.",
"main": "dist/index.js",
"scripts": {
"build": "scripts/build",
"dist": "scripts/dist",
"_postinstall": "scripts/postinstall",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepublishOnly": "scripts/prepublishOnly",
"postpublish": "scripts/postpublish",
"publishManually": "scripts/publishManually",
"prettier:fix": "npx prettier --write --ignore-unknown .",
"prettier": "npx prettier --check .",
"start": "./scripts/start",
"register": "./scripts/register"
},
"author": "Relaying Services Team",
"license": "MIT",
"dependencies": {
"@rsksmart/rif-relay-client": "https://github.com/infuy/rif-relay-client",
"@rsksmart/rif-relay-common": "https://github.com/infuy/rif-relay-common",
"@rsksmart/rif-relay-contracts": "https://github.com/anarancio/rif-relay-contracts",
"@truffle/abi-utils": "~0.2.3",
"@truffle/hdwallet-provider": "1.6.0",
"@trufflesuite/web3-provider-engine": "15.0.13-1",
"async-mutex": "~0.2.4",
"bn.js": "5.1.2",
"body-parser": "~1.19.0",
"cors": "2.8.5",
"ethereumjs-tx": "~2.1.2",
"ethereumjs-util": "~6.2.1",
"ethereumjs-wallet": "~1.0.1",
"ethval": "~2.1.1",
"express": "~4.17.1",
"jsonrpc-lite": "~2.2.0",
"loglevel": "~1.7.0",
"minimist": "~1.2.5",
"nedb-async": "~0.1.3",
"ow": "~0.17.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"truffle-hdwallet-provider": "~1.0.17",
"web3": "1.2.6",
"web3-core": "1.2.6",
"web3-core-helpers": "1.2.6",
"web3-eth-contract": "1.2.6",
"web3-provider-engine": "16.0.1",
"web3-utils": "1.2.6",
"yargs": "~17.0.1"
},
"devDependencies": {
"@0x/subproviders": "6.4.1",
"@openzeppelin/test-helpers": "0.5.10",
"@types/cors": "~2.8.7",
"@types/express": "~4.17.8",
"@types/minimist": "~1.2.0",
"@types/nedb": "~1.8.11",
"@types/node": "~13.13.4",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/web3": "~1.0.20",
"@types/web3-provider-engine": "~14.0.0",
"@types/yargs": "~17.0.2",
"@typescript-eslint/eslint-plugin": "~4.28.3",
"@typescript-eslint/parser": "~4.28.3",
"eslint": "~7.30.0",
"husky": "~6.0.0",
"pinst": "~2.1.6",
"prettier": "2.3.0",
"ts-loader": "~9.2.3",
"ts-node": "8.6.2",
"typescript": "~4.3.5"
}
}