-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "erc4337-contracts",
"description": "Implementation based on ERC-4337 standards for Account Abstraction",
"license": "",
"version": "1.0.0",
"main": "hardhat.config.ts",
"files": [
"contracts/",
"typechain-types/",
"build/artifacts/contracts/",
"deployments/"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.1.1",
"@types/node": "^16.4.13",
"chai": "^4.3.6",
"ethers": "^5.6.8",
"hardhat": "^2.9.6",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "latest",
"solc": "^0.8.21",
"solhint": "^3.4.1",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"scripts": {
"compile": "yarn hardhat compile",
"size": "yarn hardhat size-contracts",
"clean": "yarn hardhat clean",
"fcompile": "yarn clean && yarn compile",
"format": "prettier -w '(interfaces|src|scripts|test|deployments)/**/*.(sol|json|ts)'",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy/index.ts"
},
"packageManager": "[email protected]",
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@uniswap/v3-periphery": "^1.0.1",
"@uniswap/v3-sdk": "^3.9.0",
"dotenv": "^16.3.1"
}
}