-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "chainlink-hardhat-box",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy:local": "hh deploy",
"deploy:testnet": "hh deploy --network mumbai",
"deploy:polygon": "hh deploy --network polygon",
"verify:testnet": "hh verify --network mumbai --constructor-args arguments.js",
"verify:polygon": "hh verify --network polygon --constructor-args arguments.js"
},
"license": "MIT",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"chai-bn": "^0.2.1",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"hardhat": "^2.6.1",
"hardhat-deploy": "^0.7.0-beta.39",
"web3": "^1.2.9"
},
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@chainlink/test-helpers": "0.0.5",
"@chainlink/token": "^1.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.1",
"babel-eslint": "^10.1.0",
"base64-sol": "^1.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"mocha-skip-if": "^0.0.3",
"transform": "^1.1.2",
"truffle": "^5.5.11",
"truffle-contract-size": "^2.0.1"
},
"mocha": {
"timeout": 10000000
}
}