-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 975 Bytes
/
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
{
"name": "true-wallet",
"version": "1.0.0",
"description": "Smart Wallet based on ERC-4337",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "forge build",
"test": "forge test",
"compile": "forge compile",
"compilehh": "npx hardhat compile",
"testhh": "npx hardhat test"
},
"keywords": [],
"author": "VitalR",
"license": "GPL-3.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"chai": "^4.3.7",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.6",
"hardhat-preprocessor": "^0.1.4",
"ts-node": "^10.9.1",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
}
}