forked from aragon/minime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "@1hive/minime",
"version": "1.0.0",
"private": false,
"author": "Jordi Baylina",
"license": "GPL-3.0-or-later",
"files": [
"/artifacts/contracts/**/*.json",
"!/artifacts/contracts/**/*.dbg.json",
"/contracts",
"/test"
],
"scripts": {
"compile": "hardhat compile",
"chain": "hardhat node",
"test": "hardhat test",
"coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"prepublishOnly": "yarn compile -- --force"
},
"devDependencies": {
"@1hive/contract-helpers-test": "^0.1.2",
"@nomicfoundation/hardhat-verify": "^1.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle4": "^2.0.0",
"@nomiclabs/hardhat-web3-legacy": "^2.0.0",
"chai": "^4.3.4",
"dotenv": "^9.0.2",
"ethereumjs-util": "^6.2.1",
"ethers": "^5.1.4",
"hardhat": "^2.17.0",
"hardhat-deploy": "^0.11.34",
"hardhat-deploy-tenderly": "^0.2.0",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.16",
"web3": "^0.20.7",
"web3-eth-abi": "^1.3.6",
"web3-eth-accounts": "^1.3.6",
"web3-utils": "^1.3.6"
}
}