-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 2.27 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
{
"name": "barz",
"version": "1.0.0",
"description": "A Smart Contract Wallet enabling mass adoption of Web3",
"main": "index.js",
"scripts": {
"test": "yarn hardhat test",
"compile": "yarn hardhat compile",
"coverage": "yarn hardhat clean; yarn hardhat coverage",
"size": "yarn hardhat size-contracts",
"lint:sol-write": "yarn prettier 'contracts/**/*.sol' --write",
"lint:ts-write": "yarn eslint 'test/**/*.ts' 'scripts/**/*.ts' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trustwallet/barz.git"
},
"keywords": [
"SCW"
],
"author": "Trust Wallet Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/trustwallet/barz/issues"
},
"homepage": "https://github.com/trustwallet/barz#readme",
"devDependencies": {
"@account-abstraction/utils": "^0.6.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/providers": "^5.4.7",
"@ethersproject/strings": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.5",
"@types/mocha": ">=9.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.8.0",
"chai": "^4.2.0",
"dotenv": "^16.2.0",
"eslint": "^8.51.0",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.4.7",
"ganache-cli": "^6.12.2",
"hardhat": "^2.16.0",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.11.30",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.3",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"@peculiar/asn1-ecc": "^2.3.6",
"@peculiar/asn1-schema": "^2.3.6",
"@types/elliptic": "^6.4.14",
"base64url": "^3.0.1",
"cbor": "^9.0.0",
"ecdsa": "^0.7.0",
"elliptic": "^6.5.4",
"web3-utils": "^4.2.1"
}
}