-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
{
"name": "sign-with-ledger-btc",
"description": "Sign BIP-322 signature with Ledger devices",
"homepage": "https://acken2.github.io/sign-with-ledger-btc",
"version": "1.0.0",
"author": "Ken Sze <[email protected]>",
"repository": "github:ACken2/sign-with-ledger-btc",
"license": "MIT",
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.3",
"@ledgerhq/hw-transport-webhid": "^6.27.14",
"@ledgerhq/logs": "^6.10.1",
"@mui/material": "^5.13.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.29",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"bip32": "^4.0.0",
"bip322-js": "^1.0.3",
"bitcoinjs-lib": "^6.1.0",
"bs58": "^5.0.0",
"ecpair": "^2.1.0",
"fast-sha256": "^1.3.0",
"ledger-bitcoin": "^0.2.1",
"rc-progress": "^3.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"time-limit-promise": "^1.0.4",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "export REACT_APP_VERSION=$(git rev-parse HEAD) && react-app-rewired start",
"build": "export REACT_APP_VERSION=$(git rev-parse HEAD) && react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/time-limit-promise": "^1.0.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0"
}
}