forked from compound-finance/open-oracle
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.3 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "compound-open-oracle",
"version": "1.1.1",
"description": "The Compound Open Oracle",
"main": "index.js",
"repository": "https://github.com/compound-finance/open-oracle",
"author": "Compound Labs, Inc.",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@chainlink/contracts": "0.8.0",
"@defi-wonderland/smock": "^2.0.3",
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.9.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-sdk": "^3.3.2",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.2",
"hardhat-contract-sizer": "^2.0.3",
"istanbul": "^0.4.5",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-junit": "^10.0.0",
"jsbi": "^3.2.1",
"prettier": "^2.3.2",
"solidity-coverage": "^0.7.18",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typechain-common-abi": "^0.1.2",
"typescript": "^4.4.2"
},
"scripts": {
"test": "yarn hardhat test",
"coverage": "yarn hardhat coverage --network hardhat",
"compile": "yarn hardhat compile",
"deploy": "yarn hardhat run ./scripts/deploy-uav.js --network mainnet",
"deploy-test": "yarn hardhat run ./scripts/deploy-uav.js --network hardhat",
"deploy-price-oracle": "yarn hardhat deploy-price-oracle --network mainnet",
"verify-uav": "yarn hardhat verify-proposed-uav --network mainnet",
"verify-price-oracle": "yarn hardhat verify-proposed-price-oracle --network mainnet",
"verify": "yarn hardhat verify --network mainnet --constructor-args",
"verify-manual": "yarn hardhat manual-verify",
"transfer": "yarn hardhat transfer-ownership --network mainnet --contract",
"size-contracts": "yarn hardhat size-contracts"
},
"resolutions": {
"**/ganache-core": "https://github.com/compound-finance/ganache-core.git#compound",
"scrypt.js": "https://registry.npmjs.org/@compound-finance/ethereumjs-wallet/-/ethereumjs-wallet-0.6.3.tgz",
"**/sha3": "^2.1.2"
}
}