forked from tahowallet/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.6 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": "@tallyho/tally-background",
"version": "0.0.1",
"description": "Taho, the community owned and operated Web3 wallet: api implementation.",
"main": "index.ts",
"repository": "[email protected]:thesis/tally-extension.git",
"author": "Matt Luongo <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"ethereum",
"bitcoin",
"cryptocurrency",
"wallet",
"web3",
"dapp"
],
"scripts": {
"build": "webpack --mode=production",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"lint:js": "eslint .",
"test": "run-p lint:* build",
"test:unit": "node tests/index.js",
"watch": "webpack --mode=development --watch"
},
"dependencies": {
"@ethereumjs/common": "^2.4.0",
"@ethereumjs/tx": "^3.3.0",
"@ethersproject/abstract-provider": "5.7.0",
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/networks": "5.7.1",
"@ethersproject/properties": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@ethersproject/transactions": "5.7.0",
"@ethersproject/web": "^5.7.1",
"@ledgerhq/devices": "8.0.3",
"@ledgerhq/errors": "6.12.6",
"@ledgerhq/hw-app-eth": "6.33.4",
"@ledgerhq/hw-transport": "6.28.4",
"@ledgerhq/hw-transport-webusb": "6.27.14",
"@redux-devtools/remote": "^0.7.4",
"@tallyho/hd-keyring": "0.5.0",
"@tallyho/provider-bridge-shared": "0.0.1",
"@tallyho/window-provider": "0.0.1",
"@testing-library/dom": "^9.3.1",
"@types/w3c-web-usb": "^1.0.5",
"@uniswap/token-lists": "^1.0.0-beta.30",
"@walletconnect/client": "^1.8.0",
"@walletconnect/sign-client": "^2.7.7",
"@walletconnect/utils": "^2.7.7",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.0",
"argon2-browser": "^1.18.0",
"assert": "^2.0.0",
"base64-loader": "^1.0.0",
"bnc-sdk": "^3.4.1",
"dayjs": "^1.10.7",
"dexie": "^3.0.4",
"emittery": "^0.9.2",
"ethers": "5.7.2",
"immer": "^9.0.1",
"jsondiffpatch": "^0.4.1",
"lodash": "^4.17.21",
"sinon": "^14.0.0",
"siwe": "^1.1.0",
"util": "^0.12.4",
"uuid": "^9.0.0",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.9.4",
"@types/argon2-browser": "^1.18.1",
"@types/sinon": "^10.0.12",
"@types/uuid": "^8.3.4",
"@types/webextension-polyfill": "^0.8.0",
"@walletconnect/legacy-types": "^2.0.0",
"@walletconnect/types": "^2.7.7",
"crypto-browserify": "^3.12.0",
"fake-indexeddb": "^4.0.0",
"jest-webextension-mock": "^3.7.22",
"redux": "^4.1.1",
"sqlite3": "5.1.1",
"ts-node": "^10.4.0",
"webext-redux": "^2.1.7"
}
}