-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "twap-drip",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"deploy:dripper:local": "hardhat run scripts/deploy_dripper.js --network hardhat",
"deploy:dripper:xdai": "hardhat run scripts/deploy_dripper.js --network xdai",
"deploy:oracle:local": "hardhat run scripts/deploy_oracle.js --network hardhat",
"deploy:oracle:xdai": "hardhat run scripts/deploy_oracle.js --network xdai",
"read:xdai": "hardhat run scripts/get_oracle_response.js --network xdai"
},
"author": "",
"license": "ISC",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.1.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"bignumber.js": "^9.0.1",
"dotenv": "^8.2.0",
"hardhat": "^2.1.2",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.5",
"hardhat-gas-reporter": "^1.0.4",
"truffle": "^5.2.6",
"truffle-assertions": "^0.9.2",
"web3": "^1.3.5"
}
}