-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.62 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": "bloctoaccount",
"version": "1.5.0",
"description": "BloctoAccount & BloctoAccountFactory smart contracts",
"scripts": {
"clean": "rm -rf cache artifacts typechain typechain-types",
"tsc": "tsc",
"lint": "yarn compile && yarn run lint:sol && yarn run lint:js ",
"lint:js": "eslint -f unix .",
"lint-fix": "eslint -f unix . --fix",
"lint:sol": "solhint -f unix \"contracts/**/*.sol\" --max-warnings 0",
"test": "hardhat test",
"deploy": "hardhat run deploy/1_0_deploy_account_accountFactory.ts",
"deploy-create3Factory": "hardhat run deploy/0_deploy_create3Factory.ts",
"deploy-verifyingPaymaster": "hardhat run deploy/2_deploy_VerifyingPaymaster.ts",
"deploy-upgrade": "hardhat run deploy/upgrade/0_upgrade.ts",
"deploy-verify": "hardhat run deploy/4_verify.ts",
"deploy-v1.1.0": "hardhat run deploy/6_deploy_v1.1.0.ts"
},
"devDependencies": {
"@account-abstraction/contracts": "^0.6.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@typechain/ethers-v5": "^10.1.0",
"@types/chai": "^4.2.21",
"@types/node": "^16.4.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.4",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.2",
"ethjs-util": "^0.1.6",
"hardhat": "^2.6.6",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-storage-layout": "^0.1.7",
"solhint": "^3.3.7",
"ts-generator": "^0.1.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.1.0",
"typechain": "^8.1.0"
},
"dependencies": {
"@borislav.itskov/schnorrkel.js": "https://github.com/borislav-itskov/schnorrkel.js",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "4.9.5",
"@openzeppelin/contracts-upgradeable": "4.9.5",
"@thehubbleproject/bls": "^0.5.1",
"@typechain/hardhat": "^2.3.0",
"@types/mocha": "^9.0.0",
"ethereumjs-util": "^7.1.0",
"ethereumjs-wallet": "^1.0.1",
"hardhat-deploy": "^0.11.23",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"solidity-coverage": "^0.8.4",
"source-map-support": "^0.5.19",
"table": "^6.8.0",
"typescript": "^4.3.5"
},
"license": "GPL-3.0"
}