-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.52 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
49
50
51
52
{
"name": "@indexed-finance/uniswap-v2-oracle",
"version": "1.0.4",
"description": "",
"main": "buidler.config.js",
"files": [
"contracts",
"artifacts",
"deployments/rinkeby",
"deployments/mainnet"
],
"scripts": {
"build": "buidler compile",
"deploy:rinkeby": "buidler --network rinkeby deploy --tags Oracle",
"deploy:mainnet": "buidler --network mainnet deploy --tags Oracle",
"coverage": "buidler coverage --network coverage --solcoverjs ./.solcover.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@ethersproject/providers": "^5.0.14",
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/buidler-ethers": "^2.0.2",
"@nomiclabs/buidler-etherscan": "^2.1.0",
"bn.js": "^5.1.3",
"buidler-deploy": "^0.6.0-beta.34",
"buidler-ethers-v5": "^0.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"ethereumjs-wallet": "^0.6.5",
"ethers": "^5.0.17",
"mocha": "^8.2.0",
"moment": "^2.29.1",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"solidity-coverage": "^0.7.11",
"solium": "^1.2.5",
"solium-plugin-security": "^0.1.1"
},
"dependencies": {
"@indexed-finance/uniswap-deployments": "^1.0.2",
"@openzeppelin/contracts": "^3.2.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
}
}