-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 2.35 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
{
"name": "hardhat-project",
"devDependencies": {
"@chainlink/contracts": "^0.7.1",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-vyper": "^3.0.4",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^2.2.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.7.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-sdk": "^3.10.0",
"abi2solidity": "^0.2.0",
"axios": "^1.5.0",
"chai": "^4.3.8",
"dotenv": "^16.3.1",
"hardhat": "^2.22.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-docgen": "^1.3.0",
"hardhat-storage-layout": "^0.1.7",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"mainnet-forking": "npx hardhat node --fork https://rpc.ankr.com/eth",
"clean-contracts": "ts-node scripts/deployer/complete/cleanContracts.ts",
"deploy-convex-local": "npx hardhat run scripts/deployer/complete/protocol/deployLocal/deployConvex.ts --network localhost",
"deploy-protocol-local": "npx hardhat run scripts/deployer/complete/protocol/deployLocal/deployProtocol.ts --network localhost",
"deploy-protocol-cvg": "npx hardhat run scripts/deployer/complete/protocol/deployLocal/deployProtocol.ts --network cvg",
"deploy-protocol-docker": "npx hardhat run scripts/deployer/complete/protocol/deployLocal/deployProtocol.ts --network local",
"compile": "npx hardhat compile",
"localnode": "npx hardhat node",
"test-stake": "npx hardhat compile && mocha --require hardhat/register --timeout 100000000 'test/ut-stakeDao/**/*.spec.ts' ",
"test-convex": "npx hardhat compile && mocha --require hardhat/register --timeout 100000000 'test/ut-convex/**/*.spec.ts' 'test/ut-stk-tokens/**/*.spec.ts' 'test/ut-ysStreamer/**/*.spec.ts'",
"deploy": "npm run clean-contracts & npm run deploy-protocol-local",
"coverage": "npx hardhat coverage",
"coverage-convex": "npx hardhat coverage --testfiles 'test/ut-convex/**/*.spec.ts'",
"coverage-stake": "npx hardhat coverage --testfiles 'test/ut-stakeDao/**/*.spec.ts'"
}
}