-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
108 lines (108 loc) · 4.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@aave-tech/aave-token-v2",
"version": "1.0.0",
"description": "Aave ERC20 token",
"files": [
"/contracts/**/*.sol"
],
"scripts": {
"run-env": "npm i && tail -f /dev/null",
"hardhat": "hardhat",
"hardhat-kovan": "hardhat --network kovan",
"hardhat-ropsten": "hardhat --network ropsten",
"hardhat-main": "hardhat --network main",
"hardhat-docker": "hardhat --network hardhatevm_docker",
"hardhat help": "hardhat help",
"compile": "SKIP_LOAD=true hardhat compile",
"compile:force": "npm run compile -- --force",
"compile:force:quiet": "npm run compile:force -- --quiet",
"types-gen": "hardhat typechain",
"test": "npm run compile:force:quiet && TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"coverage": "SKIP_LOAD=true npx hardhat typechain && node --max_old_space_size=6144 node_modules/.bin/hardhat coverage",
"dev:deployment": "hardhat dev-deployment --admin ${AAVE_ADMIN:-''} --lend-token-address ${LEND_TOKEN:-''}",
"docker:deployment": "npm run hardhat-docker -- dev-deployment --admin ${AAVE_ADMIN:-''} --lend-token-address ${LEND_TOKEN:-''}",
"dev:main:deployment": "hardhat main-deployment",
"dev:deploy-AaveToken": "hardhat deploy-AaveToken",
"dev:deploy-LendToAaveMigrator": "hardhat deploy-LendToAaveMigrator",
"dev:initialize-AaveToken": "hardhat initialize-AaveToken --admin ${AAVE_ADMIN:-''}",
"dev:initialize-LendToAaveMigrator": "hardhat initialize-LendToAaveMigrator --admin ${AAVE_ADMIN:-''}",
"kovan:deployment": "npm run hardhat-kovan -- testnet-deployment --verify",
"kovan:deploy-AaveToken": "npm run hardhat-kovan deploy-AaveToken",
"kovan:deploy-v2": "hardhat --network kovan deploy-v2 --verify",
"kovan:deploy-LendToAaveMigrator": "npm run hardhat-kovan deploy-LendToAaveMigrator",
"kovan:initialize-AaveToken": "npm run hardhat-kovan -- initialize-AaveToken --admin ${AAVE_ADMIN:-''}",
"kovan:initialize-LendToAaveMigrator": "npm run hardhat-kovan -- initialize-LendToAaveMigrator --admin ${AAVE_ADMIN:-''}",
"ropsten:deployment": "npm run hardhat-ropsten -- testnet-deployment --verify",
"ropsten:deploy-AaveToken": "npm run hardhat-ropsten deploy-AaveToken",
"ropsten:deploy-LendToAaveMigrator": "npm run hardhat-ropsten deploy-LendToAaveMigrator",
"ropsten:initialize-AaveToken": "npm run hardhat-ropsten -- initialize-AaveToken --admin ${AAVE_ADMIN:-''}",
"ropsten:initialize-LendToAaveMigrator": "npm run hardhat-ropsten -- initialize-LendToAaveMigrator --admin ${AAVE_ADMIN:-''}",
"main:deployment": "npm run hardhat-main -- main-deployment --verify",
"main:deploy-AaveTokenV2": "npm run hardhat-main deploy-AaveTokenV2 --verify",
"main:deploy-AaveToken": "npm run hardhat-main deploy-AaveToken",
"main:deploy-LendToAaveMigrator": "npm run hardhat-main -- deploy-LendToAaveMigrator --lend-token-address ${LEND_TOKEN:-''}",
"main:initialize-AaveToken": "npm run hardhat-main -- initialize-AaveToken --admin ${AAVE_ADMIN:-''} --onlyProxy",
"main:initialize-LendToAaveMigrator": "npm run hardhat-main -- initialize-LendToAaveMigrator --admin ${AAVE_ADMIN:-''} --onlyProxy",
"ci:clean": "rm -rf ./artifacts ./cache ./types"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "3.0.1",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "4.2.11",
"@types/lowdb": "1.0.9",
"@types/mocha": "7.0.2",
"@types/node": "14.0.5",
"bignumber.js": "9.0.0",
"buidler-typechain": "0.1.1",
"chai": "4.2.0",
"chai-bignumber": "3.0.0",
"eth-sig-util": "2.5.3",
"ethereum-waffle": "^3.2.1",
"ethereumjs-util": "7.0.2",
"ethers": "^5.0.8",
"hardhat": "^2.0.4",
"hardhat-typechain": "^0.3.3",
"husky": "^4.2.5",
"lowdb": "1.0.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.53",
"solidity-coverage": "^0.7.13",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.0",
"typechain": "^3.0.0",
"typescript": "^4.1.2"
},
"author": "Aave",
"contributors": [
{
"name": "Ernesto Boado",
"email": "[email protected]"
},
{
"name": "Emilio Frangella",
"email": "[email protected]"
},
{
"name": "Andrey Kozlov",
"email": "[email protected]"
},
{
"name": "David Racero",
"email": "[email protected]"
},
{
"name": "Hadrien Charlanes",
"email": "[email protected]"
}
],
"license": "AGPLv3",
"dependencies": {
"tmp-promise": "^3.0.2"
},
"publishConfig": {
"@aave-tech:registry": "https://gitlab.com/api/v4/projects/19392283/packages/npm/"
}
}