-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.38 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
{
"name": "rextest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat run test/test.js",
"deploy": "npx hardhat run scripts/deploy.js",
"deployzk": "npx hardhat run scripts/zkevm_deploy.js --network zkevm",
"test_deposit_function": "node ./unit_tests/deposit.js",
"test_interest": "npx hardhat test ./unit_tests/interest.js",
"test_lending_pool": "npx hardhat test ./unit_tests/lending_pool.js",
"test_liquidation": "npx hardhat test ./unit_tests/liquidation.js",
"test_deposit": "npx hardhat test ./unit_tests/deposit_test.js",
"test_margin": "npx hardhat test ./unit_tests/margin_trading_test.js",
"test_unit": "npx hardhat test ./unit_tests/unit_test.js",
"compile": "npx hardhat compile"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@solarity/hardhat-markup": "^1.0.4",
"hardhat": "^2.22.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.45"
},
"dependencies": {
"@api3/airnode-protocol": "^0.14.0",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"fs": "^0.0.1-security",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-gas-trackooor": "^1.0.4",
"hardhat-gui": "^0.0.14",
"path": "^0.12.7"
}
}