-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.8 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
{
"name": "wagmi-leverage",
"scripts": {
"compile": "hardhat clean && hardhat compile",
"test:all": "npx hardhat test --show-stack-traces --typecheck && forge test -vvv --ffi --gas-report",
"test": "npx hardhat test --show-stack-traces --typecheck",
"test:fulltraceError": "npx hardhat test --vv --typecheck",
"test:forge": "forge test -vvv --ffi --mt $test_function",
"test:forge:all": "forge test -vvv --ffi",
"test:coverage": "npx hardhat coverage --testfiles 'test/*.ts'",
"deploy": "npx hardhat run ./scripts/deploy.ts --network $npm_config_network",
"user-info": "npx hardhat run ./scripts/info.ts --network $npm_config_network",
"send-trx": "npx hardhat run ./scripts/send.ts --network $npm_config_network",
"slots": "npx hardhat check",
"size": "npx hardhat size-contracts",
"lint": "prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol' && prettier --list-different 'scripts/**/*.ts' && prettier --list-different 'test/**/*.ts'",
"lint-fix": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' && prettier --write 'scripts/**/*.ts' && prettier --write 'test/**/*.ts'"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@openzeppelin/contracts": "4.9.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@types/node": "^20.5.0",
"@uniswap/v3-core": "1.0.1",
"@uniswap/v3-periphery": "1.4.3",
"dotenv": "^16.0.3",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-exposed": "^0.3.12",
"hardhat-gas-trackooor": "^1.0.2",
"hardhat-storage-layout": "^0.1.7",
"hardhat-tracer": "^2.2.2",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@aave/core-v3": "^1.19.3"
}
}