-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 KB
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
{
"name": "contracts",
"version": "1.0.0",
"main": "hardhat.config.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage --testfiles 'test/*.js'",
"deploy-testnet": "npx hardhat run scripts/deploy.js --network testnet"
},
"dependencies": {
"@chainlink/contracts": "0.4.1",
"@ethersproject/experimental": "5.6.3",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/hardhat-upgrades": "1.21.0",
"@openzeppelin/test-helpers": "0.5.15",
"big.js": "6.1.1",
"csv-parse": "5.0.4",
"dotenv": "10.0.0",
"ethers": "5.7.2",
"ethers-multicall": "0.2.2",
"evm-bn": "1.1.1",
"hardhat": "2.12.4",
"hardhat-gas-reporter": "1.0.8",
"js-big-decimal": "1.3.4",
"keccak256": "^1.0.6",
"mocha-junit-reporter": "2.0.2",
"mocha-multi-reporters": "1.5.1",
"objects-to-csv": "1.3.6",
"solhint": "3.3.7",
"solidity-coverage": "0.8.1",
"typechain": "^8.1.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "9.1.0",
"@types/node": "^18.11.15",
"chai": "^4.3.7",
"hardhat-contract-sizer": "2.6.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}