forked from keyper-labs/PalmeraModule
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.92 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
{
"name": "palmera-module",
"version": "1.0.0",
"description": "Script for Test ERC-4337 Pimlico SDK and Safe SDK",
"main": "hardhat.config.ts",
"repository": "https://github.com/keyper-labs/KeyperModule.git",
"author": "Alfredo Lopez alfredo@palmeradao.xyz",
"license": "MIT",
"scripts": {
"build": "rm -rf docs/ && npx hardhat clean && npx hardhat compile && npx hardhat docgen",
"hardhat": "npx hardhat",
"test": "yarn build && npx hardhat test ./test/hardhat/index.test.ts --network hardhat",
"test-local": "npx hardhat test --network local",
"script-AA-deployOrgOnChain": "npx ts-node ERC-4337/deployOrgOnChain.ts",
"script-AA-deploySafeWallets": "npx ts-node ERC-4337/deploySafeWallets.ts"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"parser": "typescript",
"style": "module"
}
},
"dependencies": {
"@safe-global/api-kit": "^2.4.1",
"@safe-global/protocol-kit": "^4.0.1",
"@safe-global/safe-core-sdk-types": "^5.0.1",
"@safe-global/safe-ethers-lib": "^1.9.4",
"permissionless": "^0.1.30",
"viem": "^2.7.6"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-ignition": "^0.15.4",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomicfoundation/ignition-core": "^0.15.4",
"@nomicfoundation/solidity-analyzer": "^0.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"chai": "4",
"dotenv": "^16.4.5",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^6.13.0",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^2.2.0",
"mocha": "^10.4.0",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "0.6.0-beta.36",
"ts-generator": "^0.1.1",
"ts-node": ">=8.0.0",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "~5.0.4"
}
}