-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 3.08 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
62
63
64
65
66
67
68
69
70
{
"name": "hardhat-project",
"scripts": {
"build": "hardhat compile",
"coverage": "npx hardhat coverage",
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "npx hardhat coverage",
"lint": "prettier --check . && hardhat prettier-check",
"lint:fix": "prettier --write . && hardhat prettier",
"listPositions": "npx hardhat --network localhost run ./scripts/listPositions.ts",
"format:write": "prettier --write 'contracts/**/*.sol' 'scripts/**/*.ts'",
"format:check": "prettier --check 'contracts/**/*.sol' 'scripts/**/*.ts'",
"prettier": "yarn run format:check --all",
"prettier:fix": "yarn run format:write --all",
"prepare": "husky",
"deploy:chaos:base": "npx hardhat ignition deploy ignition/modules/CHAOS.ts --network base --verify",
"deploy:farm:base": "npx hardhat ignition deploy ignition/modules/Farm.ts --network base --verify",
"deploy:bro:base": "npx hardhat ignition deploy ignition/modules/BroMerge.ts --network base --verify",
"deploy:factory": "npx hardhat ignition deploy ignition/modules/MergeFactory.ts --network base --verify",
"deploy:uni": "npx hardhat ignition deploy ignition/modules/UniAdaptor.ts --network base --verify",
"deploy:uni:fomo": "npx hardhat ignition deploy ignition/modules/UniFomo.ts --network base --verify",
"deploy:mergewithmarket": "npx hardhat ignition deploy ignition/modules/MergeWithMarket.ts --network base --verify",
"deploy:dynamic:base": "npx hardhat ignition deploy ignition/modules/DynamicEaterModule.ts --network base --verify",
"deploy:uni2amm:base": "npx hardhat ignition deploy ignition/modules/UniAdaptor2Module.ts --network base --verify",
"deploy:fomo:base": "npx hardhat ignition deploy ignition/modules/FomoAdaptorModule.ts --network base --verify",
"deploy:wrapper:base": "npx hardhat ignition deploy ignition/modules/WrapperModule.ts --network base --verify"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.10",
"@nomicfoundation/ignition-core": "^0.15.5",
"@openzeppelin/contracts": "^4.9.6",
"@typechain/ethers-v6": "^0.5.0",
"@types/jest": "^29.5.12",
"ethers": "^6.13.2",
"hardhat": "^2.22.15",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"wait-on": "^8.0.0"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@openzeppelin/merkle-tree": "^1.0.7",
"@typechain/hardhat": "^9.0.0",
"@types/mocha": ">=9.1.0",
"@uniswap/swap-router-contracts": "^1.3.1",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"chai": "^4.2.0",
"dotenv": "^16.4.5",
"hardhat-gas-reporter": "^1.0.8",
"keccak256": "^1.0.6",
"merkletreejs": "^0.4.0",
"solidity-coverage": "^0.8.13",
"typechain": "^8.3.0"
},
"engine": {
"node": "20.12.2"
}
}