-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·108 lines (108 loc) · 3.04 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "blitz-wallet-pos",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.5",
"@boltz/bitcoin-ops": "^2.0.0",
"@noble/curves": "^1.4.0",
"@scure/base": "^1.1.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vulpemventures/secp256k1-zkp": "3.2.1",
"@zxing/library": "^0.20.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bip65": "^1.0.3",
"bip66": "^1.1.5",
"bn.js": "^5.2.1",
"bolt11": "^1.4.1",
"boltz-core": "^2.1.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"decimal.js": "^10.4.3",
"firebase": "^10.13.0",
"liquidjs-lib": "^6.0.2-liquid.34",
"lottie-react": "^2.4.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-qr-code": "^2.0.15",
"react-router-dom": "^6.26.1",
"react-scripts": "5.0.1",
"reactjs-popup": "^2.0.6",
"scrypt-js": "^3.0.1",
"slip77": "^0.2.0",
"stream-browserify": "^3.0.0",
"tiny-secp256k1": "^2.2.3",
"typescript": "^4.4.2",
"web-vitals": "^4.2.3",
"workbox-background-sync": "^6.4.2",
"workbox-broadcast-update": "^6.4.2",
"workbox-cacheable-response": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-expiration": "^6.4.2",
"workbox-google-analytics": "^6.4.2",
"workbox-navigation-preload": "^6.4.2",
"workbox-precaching": "^6.4.2",
"workbox-range-requests": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2",
"workbox-streams": "^6.4.2",
"ws-electrumx-client": "^1.0.5"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"lint": "eslint --ext .ts,.tsx src",
"eject": "craco 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": {
"@babel/plugin-proposal-private-property-in-object": "",
"@babel/preset-env": "^7.24.4",
"@craco/craco": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest-environment-jsdom": "27.5.1",
"jest-environment-node": "27.5.1",
"prettier": "^2.7.1",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2"
}
}