-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
63 lines (63 loc) · 2.44 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "aave-proposal-deployer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "SKIP_LOAD=true hardhat compile",
"test": "MAINNET_FORK=true hardhat test ./test/test-listing-generic.spec.ts",
"test:crv": "MAINNET_FORK=true FORKING_BLOCK=11538355 hardhat test ./test/test-listing-crv.spec.ts",
"test:bal": "MAINNET_FORK=true FORKING_BLOCK=11743368 hardhat test ./test/test-listing-bal.spec.ts",
"test:bond": "MAINNET_FORK=true FORKING_BLOCK=12767300 hardhat test ./test/test-listing-bond.spec.ts",
"test:xsushi": "MAINNET_FORK=true FORKING_BLOCK=11829845 hardhat test ./test/test-listing-xsushi.spec.ts",
"test:rai": "MAINNET_FORK=true FORKING_BLOCK=12593370 hardhat test ./test/test-listing-rai.spec.ts",
"run-env": "npm i && tail -f /dev/null",
"propose-new-asset:kovan": "hardhat create:proposal-new-asset --network kovan",
"propose-new-asset:main": "hardhat create:proposal-new-asset --network main",
"propose-new-asset:bond:main": "hardhat create:proposal-new-asset:bond --network main",
"propose-new-asset:rai:main": "hardhat create:proposal-new-asset:rai --network main"
},
"keywords": [],
"author": "dhadrien",
"license": "ISC",
"dependencies": {
"@types/mocha": "^8.2.0",
"hardhat": "^2.6.2",
"install": "^0.13.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@tenderly/hardhat-tenderly": "^1.0.6",
"@typechain/ethers-v5": "^5.0.0",
"@types/bs58": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"bs58": "^4.0.1",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.4.6",
"fs": "0.0.1-security",
"hardhat-deploy": "^0.7.0-beta.43",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.4",
"path": "^0.12.7",
"prettier": "^2.2.1",
"solidity-coverage": "^0.7.13",
"temp-hardhat-etherscan": "^2.0.2",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typechain": "^4.0.1",
"typechain-target-ethers-v5": "^1.2.2",
"typescript": "^4.1.3"
}
}