-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
84 lines (84 loc) · 2.25 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
{
"name": "@hats.finance/hats-contracts",
"version": "2.0.0",
"description": "White Hat Incentive",
"files": [
"contracts/",
"docs/",
"build/contracts/",
"migrations/",
"test/",
"truffle.js",
"tsconfig.json"
],
"scripts": {
"lint": "eslint .",
"lint --fix": "eslint --fix .",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"coveralls": "hardhat --config hardhat.config.coverage.js coverage ",
"gas-avg": "hardhat test && python3 gas-avg-check.py"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@kleros/dispute-resolver-interface-contract": "^8.0.0",
"@nomicfoundation/solidity-analyzer": "^0.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@oasisprotocol/sapphire-hardhat": "^2.19.4",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"dotenv": "^14.1.0",
"eslint": "^6.8.0",
"eth-ecies": "^1.0.5",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.4",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-wallet": "^1.0.1",
"ethers": "^5.6.8",
"hardhat": "^2.17.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.11.22",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.7",
"hardhat-watcher": "^2.1.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.9",
"mocha": "^7.1.1",
"solhint": "^3.3.5",
"solidity-coverage": "^0.8.4",
"strip-hex-prefix": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/orenyodfat/whi.git"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"defi"
],
"engines": {
"node": ">=12.16.1"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@arbitrum/token-bridge-contracts": "1.2.1",
"@openzeppelin/contracts": "4.8.3",
"@openzeppelin/contracts-upgradeable": "4.8.3"
},
"publishConfig": {
"access": "public"
}
}