-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.98 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
{
"name": "@aave/deploy-v3",
"version": "1.55.3",
"files": [
"dist",
"LICENSE",
"README.md",
"contracts/testnet-helpers",
"artifacts"
],
"engines": {
"node": ">=16.0.0"
},
"types": "dist/types/helpers/index.d.ts",
"author": "Aave",
"contributors": [
"David Racero <[email protected]>",
"Miguel Martinez <[email protected]>",
"Steven Valeri <[email protected]>",
"Emilio Frangella <[email protected]>"
],
"main": "dist/helpers/index.js",
"devDependencies": {
"@aave/aave-token": "^1.0.4",
"@aave/safety-module": "^1.0.3",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5",
"@types/bluebird": "^3.5.36",
"@types/chai": "^4.2.21",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"bluebird": "^3.7.2",
"chai": "^4.3.4",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"ethers": "^5.4.7",
"hardhat": "^2.12.4",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.10.6",
"jsondiffpatch": "^0.4.1",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.3.1",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.3.2"
},
"license": "AGPLv3",
"scripts": {
"run-env": "npm ci && tail -f /dev/null",
"cp-typechain": "cp typechain/*.d.ts ./dist/types/typechain",
"build": "tsc --project lib.tsconfig.json && npm run cp-typechain",
"clean": "rm -rf artifacts/ types/ dist/ typechain/",
"compile": "SKIP_LOAD=true npx hardhat compile",
"prepublish": "npm run clean && npm run compile && npm run build",
"lint": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"node": "npx hardhat node --no-deploy",
"node:fork": "FORK=main npm run node --no-deploy",
"deploy": "if [ \"$SKIP_COMPILE\" = 'true' ]; then echo '[Warning] Skipping compilation'; else npm run compile; fi && npx hardhat deploy --no-compile",
"test": "npm run compile && npx hardhat test ./tests/__setup.spec.ts ./tests/*.ts",
"test:fork": "MARKET_NAME=Aave FORK=main npx hardhat test ./tests/__setup.spec.ts ./tests/fork/check-list.spec.ts",
"test:ethereum:fork": "TRANSFER_OWNERSHIP=true FORK=main MARKET_NAME=Ethereum npx hardhat test ./tests/ethereum/ethereum.*.spec.ts",
"deploy:market:aave:fork": "FORK=main MARKET_NAME=Aave npm run deploy",
"deploy:market:eth:empty:fork": "FORK=main MARKET_NAME=Ethereum npm run deploy"
},
"peerDependencies": {
"hardhat": "^2.6.1"
},
"publishConfig": {
"registry": " https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/aave/aave-v3-deploy"
},
"dependencies": {
"defender-relay-client": "^1.11.1"
}
}