-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 2.2 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
{
"name": "layer2-finance-v2-contracts",
"version": "0.0.2",
"description": "Layer 2 Finance V2 Contracts",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"generate:typechain": "rm -rf typechain && hardhat typechain",
"report-gas:benchmark": "hardhat test benchmark/*.ts",
"report-gas:summary": "REPORT_GAS=true hardhat test test/Staking.spec.ts test/BuySell.spec.ts test/DepositWithdraw.spec.ts test/DisputeBuy.spec.ts",
"size-contracts": "hardhat size-contracts > reports/contract_sizes.txt",
"test": "hardhat compile && sh ./scripts/test_all.sh",
"test:curve": "hardhat test test-strategy/curve/StrategyCurveEthSETh.spec.ts --network localhost",
"fork-mainnet": "hardhat node --no-deploy --fork $ALCHEMY_MAINNET_RPC"
},
"repository": {
"type": "git",
"url": "git+https://github.com/celer-network/layer2-finance-v2-contracts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/celer-network/layer2-finance-v2-contracts/issues"
},
"homepage": "https://github.com/celer-network/layer2-finance-v2-contracts#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.1",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.4",
"fs-extra": "^10.0.0",
"hardhat": "^2.6.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.8.11",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solc": "0.8.6",
"ts-node": "^10.2.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"dotenv": "^10.0.0"
}
}