forked from mashharuki/erc-4337-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.31 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
{
"name": "erc-4337-examples",
"version": "1.0.0",
"description": "A collection of example scripts for working with ERC-4337.",
"repository": "[email protected]:stackup-wallet/erc-4337-examples.git",
"license": "MIT",
"scripts": {
"lint": "eslint . && tsc --noEmit",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check --ignore-path ./.eslintignore '**'",
"prettier:fix": "prettier --write --ignore-path ./.eslintignore '**'",
"init": "ts-node scripts/init.ts",
"simpleAccount": "ts-node scripts/simpleAccount/index.ts"
},
"dependencies": {
"@account-abstraction/sdk": "^0.4.0",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"axios": "^1.2.3",
"commander": "^10.0.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.6",
"typechain": "^8.1.1"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}