-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
27 lines (27 loc) · 921 Bytes
/
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
{
"name": "aave-loop",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-org-code/AaveLoop.git"
},
"author": "Orbs",
"license": "MIT",
"dependencies": {
"@defi.org/web3-candies": "2.x",
"axios": "0.24.x"
},
"scripts": {
"prettier": "prettier --write '{test,src,contracts}/**/*.{ts,js,json,sol}'",
"typechain": "npx hardhat typechain",
"prebuild": "rm -rf artifacts typechain-hardhat typechain-abi && npm run prettier && npm run typechain",
"build": "npx hardhat compile && npx solhint 'contracts/**/*.sol'",
"test": "DEBUG=web3-candies npx hardhat test --logs",
"test:avax": "DEBUG=web3-candies NETWORK=avax npx hardhat test --logs",
"test:poly": "DEBUG=web3-candies NETWORK=poly npx hardhat test --logs",
"deploy": "DEBUG=web3-candies npx hardhat deploy --network $1"
},
"prettier": {
"printWidth": 180
}
}