forked from eth-infinitism/account-abstraction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.82 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
{
"name": "accountabstraction",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rm -rf cache artifacts typechain typechain-types",
"compile": "./scripts/hh-wrapper compile && yarn run makeUserOps",
"tsc": "tsc",
"makeUserOps": "./scripts/makeUserOps",
"test": "./scripts/hh-wrapper test",
"coverage": "COVERAGE=1 hardhat coverage",
"deploy": "./scripts/hh-wrapper deploy",
"test-dev": "hardhat test --network dev",
"ci": "hardhat compile && GAS_REPORT=1 hardhat test && yarn gas-report && yarn run runop",
"gas-report": "cat reports/gas-used-output.color; echo; perl -pe 's/\\e\\[\\d+m//g' reports/gas-used-output.color > reports/gas-used-output.txt",
"runop": "hardhat run src/runop.ts ",
"runop-goerli": "AA_URL=https://account-abstraction-goerli.nethermind.io yarn runop --network goerli",
"runop3": "hardhat run src/runop3.ts "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@types/chai": "^4.2.21",
"@types/node": "^16.4.12",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.2",
"hardhat": "^2.6.6",
"ts-generator": "^0.1.1",
"ts-node": "^10.1.0",
"typechain": "^5.1.2"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@openzeppelin/contracts": "^4.2.0",
"@typechain/hardhat": "^2.3.0",
"@types/mocha": "^9.0.0",
"eth-gas-reporter": "^0.2.24",
"ethereumjs-util": "^7.1.0",
"ethereumjs-wallet": "^1.0.1",
"hardhat-deploy": "^0.9.3",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"hardhat-gas-reporter": "^1.0.7",
"solidity-coverage": "^0.7.18",
"source-map-support": "^0.5.19",
"typescript": "^4.3.5"
}
}