-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 3.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "biconomy-paymasters",
"description": "Account abstraction ERC4337 paymaster contracts",
"version": "1.0.0",
"author": {
"name": "Biconomy",
"url": "https://github.com/bcnmy"
},
"dependencies": {
"@biconomy-devx/erc7579-msa": "^0.0.4",
"@openzeppelin/contracts": "^5.0.1",
"hardhat": "^2.20.1"
},
"devDependencies": {
"@bonadocs/docgen": "^1.0.1-alpha.1",
"@ethersproject/abstract-provider": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@prb/test": "^0.6.4",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": ">=10.0.6",
"@types/node": ">=20.11.19",
"account-abstraction": "github:eth-infinitism/account-abstraction#develop",
"chai": "^4.3.7",
"codecov": "^3.8.3",
"ethers": "^6.11.1",
"hardhat-deploy": "^0.11.45",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-storage-layout": "^0.1.7",
"modulekit": "github:rhinestonewtf/modulekit",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"sentinellist": "github:zeroknots/sentinellist",
"solady": "github:vectorized/solady",
"solhint": "^4.1.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.7",
"ts-node": ">=10.9.2",
"typechain": "^8.3.2",
"typescript": ">=5.3.3"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"hardhat",
"smart-contracts",
"solidity"
],
"private": true,
"scripts": {
"clean:forge": "forge clean",
"clean:hardhat": "yarn hardhat clean",
"clean": "yarn run clean:forge && yarn run clean:hardhat && rm -rf cache docs coverage storageLayout coverage.json",
"build:forge": "forge build",
"build:hardhat": "yarn hardhat compile",
"build": "yarn run build:forge && yarn run build:hardhat",
"test:forge": "forge test",
"test:hardhat": "yarn hardhat test",
"test": "yarn run test:hardhat && yarn run test:forge",
"test:gas:forge": "forge test --gas-report",
"test:gas:hardhat": "REPORT_GAS=true hardhat test",
"test:gas": "yarn test:gas:hardhat && yarn test:gas:forge",
"coverage:forge": "forge coverage",
"coverage:hardhat": "yarn hardhat coverage",
"coverage": "yarn run coverage:forge && yarn run coverage:hardhat",
"coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage/foundry && mv lcov.info coverage/foundry && yarn run coverage:hardhat",
"docs": "yarn hardhat docgen",
"check-storage": "yarn hardhat check",
"deploy:hardhat": "yarn hardhat run --network localhost scripts/typescript/deploy.ts",
"deploy:forge": "forge script scripts/solidity/Deploy.s.sol --broadcast --rpc-url http://localhost:8545",
"lint:sol": "yarn solhint 'contracts/**/*.sol' && forge fmt --check",
"lint:sol-fix": "yarn prettier --write 'contracts/**/*.sol' && yarn solhint 'contracts/**/*.sol' --fix --noPrompt && forge fmt",
"lint:ts": "yarn prettier --check 'test/**/*.ts' 'scripts/**/*.ts'",
"lint:ts-fix": "yarn prettier --write 'test/**/*.ts' 'scripts/**/*.ts'",
"lint": "yarn run lint:sol && yarn run lint:ts",
"lint:fix": "yarn run lint:sol-fix && yarn run lint:ts-fix"
}
}