forked from aave/aave-v3-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.82 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
{
"name": "@aave/deploy-v3",
"version": "1.56.2",
"files": [
"dist",
"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/core-v3": "^1.19.3",
"@aave/periphery-v3": "^2.5.2",
"@aave/safety-module": "^1.0.3",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/contracts": "^4.3.2",
"@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",
"hardhat": "^2.17.4",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.10.6",
"jsondiffpatch": "^0.4.1",
"prettier": "^2.3.2",
"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",
"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 && npm run test:fork",
"test:fork": "MARKET_NAME=Aave FORK=main npx hardhat test ./tests/__setup.spec.ts ./tests/fork/check-list.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": {
"@aave/core-v3": "x || >=1.0.0-beta || >=3.0.0-beta",
"@aave/periphery-v3": "x || >=1.0.0-beta || >=3.0.0-beta",
"hardhat": "^2.6.1"
},
"publishConfig": {
"registry": " https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/aave/aave-v3-deploy"
},
"dependencies": {
"@openzeppelin/defender-relay-client": "^1.54.1"
}
}