-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.61 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "abstract-accounts",
"version": "0.0.1",
"description": "A playground of ERC-4337 Account Abstraction Wallets",
"keywords": [
"ERC-4337",
"Account Abstraction",
"Account",
"Wallet",
"Signer"
],
"author": "Nick Addison",
"license": "MIT",
"files": [
"/abis",
"!/contracts/**/*.sol",
"/dist",
"!/dist/test"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "yarn run lint-ts && yarn run lint-sol",
"lint-ts": "eslint -f unix src --ext .ts --fix",
"lint-sol": "solhint 'contracts/**/*.sol'",
"clean": "yarn hardhat clean && rm -rf src/types/typechain dist coverage artifacts",
"compile-abis": "yarn hardhat export-abi --no-compile && typechain --target=ethers-v5 --out-dir src/types/typechain \"?(contracts|artifacts)/!(build-info)/**/+([a-zA-Z0-9]).json\"",
"compile-ts": "npx tsc",
"compile-sol": "yarn hardhat compile --no-typechain",
"compile": "yarn hardhat compile",
"coverage": "node --max_old_space_size=6144 node_modules/.bin/hardhat coverage --testfiles 'test/**/*.spec.ts' --show-stack-traces --typecheck",
"flatten": "npx sol-merger \"./contracts/**/*.sol\" ./_flat",
"hh:fork": "npx hardhat node --config hardhat-fork.config.ts",
"task": "yarn hardhat --config tasks.config.ts --typecheck",
"task:fork": "yarn hardhat --config tasks-fork.config.ts --typecheck",
"test": "yarn hardhat test ./test/unit/*.spec.ts --typecheck",
"test:fork": "yarn hardhat --config hardhat-fork.config.ts test ./test/fork/**/*.spec.ts --typecheck",
"test:file:fork": "yarn hardhat --config hardhat-fork.config.ts test --typecheck",
"test:file": "yarn hardhat test --typecheck",
"prepublishOnly": "yarn compile && yarn compile-ts && yarn compile-abis"
},
"dependencies": {
"@naddison36/account-abstraction-sdk": "^0.5.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"defender-relay-client": "^1.39.0",
"ethers": "^5.4.2",
"hardhat": "^2.6.6"
},
"devDependencies": {
"@account-abstraction/contracts": "^0.5.0",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.2.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.2.21",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.4",
"eslint": "^8.25.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.9",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.9",
"node-plantuml": "^0.9.0",
"prettier": "^2.8.4",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"ts-generator": "^0.1.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.1.0",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
},
"repository": "github:naddison36/abstract-accounts"
}