-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 2.06 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
{
"author": "P2P Validator <[email protected]>",
"homepage": "https://p2p.org/",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.1.1",
"@nomiclabs/hardhat-etherscan": "3.1.8",
"@nomiclabs/hardhat-waffle": "2.0.2",
"@openzeppelin/merkle-tree": "1.0.2",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.3",
"@types/chai": "4.3.0",
"@types/mocha": "9.1.0",
"@types/node": "17.0.13",
"axios": "^1.4.0",
"chai": "4.3.4",
"cross-env": "7.0.3",
"dotenv": "14.2.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.1",
"hardhat": "2.22.5",
"hardhat-contract-sizer": "2.6.1",
"hardhat-deploy": "0.11.15",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-gas-reporter": "1.0.7",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solidity-coverage": "0.7.18",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "4.8.4"
},
"scripts": {
"test:hh": "hardhat test",
"test:forge": "forge test",
"test": "yarn test:hh && yarn test:forge",
"lint": "solhint 'contracts/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write .",
"coverage": "hardhat coverage",
"typechain": "yarn hardhat typechain",
"size": "yarn run hardhat size-contracts",
"deployToHolesky": "yarn hardhat run --network holesky scripts/deploy.ts",
"main": "yarn hardhat run --network holesky scripts/main.ts",
"sendErc4337UserOperation": "yarn hardhat run --network holesky scripts/sendErc4337UserOperation.ts",
"sendErc4337UserOperationForOracleFeeDistributor": "yarn hardhat run --network holesky scripts/sendErc4337UserOperationForOracleFeeDistributor.ts",
"generateMockMerkleTree": "yarn hardhat run --network holesky scripts/generateMockMerkleTree.ts",
"deployWithForge": "forge script script/Deploy.s.sol:Deploy --rpc-url $GOERLI_RPC_URL --private-key $PRIVATE_KEY --broadcast --chain holesky --json --verify --etherscan-api-key $ETHERSCAN_API_KEY -vvvv"
},
"dependencies": {
"@google-cloud/bigquery": "6.2.0"
}
}