forked from rsksmart/rif-relay-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.04 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
{
"name": "rif-relay-common",
"version": "1.0.0",
"description": "This project contains all the common 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 ."
},
"author": "Relaying Services Team",
"license": "MIT",
"dependencies": {
"@openeth/truffle-typings": "0.0.6",
"@openzeppelin/contracts": "~3.2.0",
"@rsksmart/rif-relay-contracts": "https://github.com/anarancio/rif-relay-contracts",
"@truffle/contract": "~4.2.23",
"@truffle/contract-schema": "3.3.2",
"@truffle/hdwallet-provider": "1.2.4",
"@truffle/abi-utils": "~0.2.3",
"@types/eth-sig-util": "2.1.0",
"@types/node": "~13.13.4",
"@types/semver": "~7.3.4",
"@types/web3": "1.2.2",
"@types/web3-provider-engine": "~14.0.0",
"bn.js": "5.1.2",
"chalk": "~4.1.0",
"eth-sig-util": "2.5.2",
"ethereumjs-common": "~1.5.2",
"ethereumjs-tx": "~2.1.2",
"ethereumjs-util": "~6.2.1",
"ethval": "~2.1.1",
"loglevel": "~1.7.0",
"ow": "~0.17.0",
"patch-package": "~6.4.6",
"semver": "~7.3.2",
"web3": "1.2.6",
"web3-core": "1.2.6",
"web3-core-helpers": "1.2.6",
"web3-eth": "1.2.6",
"web3-eth-abi": "1.3.0",
"web3-eth-contract": "1.2.6",
"web3-utils": "1.2.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~4.28.3",
"@typescript-eslint/parser": "~4.28.3",
"@types/eth-sig-util": "2.1.0",
"eslint": "~7.30.0",
"husky": "~6.0.0",
"prettier": "2.3.0",
"ts-loader": "~9.2.3",
"ts-node": "8.6.2",
"typescript": "4.3.5",
"webpack": "~5.43.0",
"webpack-cli": "~4.7.2",
"webpack-node-externals": "~3.0.0"
}
}