-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.11 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.11 KB
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
109
{
"name": "helm",
"version": "0.4.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",
"@vulpemventures/secp256k1-zkp": "3.2.1",
"axios": "^1.8.2",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bip65": "^1.0.3",
"bip66": "^1.1.5",
"bitcoinjs-lib": "^6.1.7",
"bn.js": "^5.2.1",
"boltz-core": "^3.0.0",
"bs58check": "^4.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"decimal.js": "^10.4.3",
"ecpair": "2.1.0",
"light-bolt11-decoder": "^3.2.0",
"liquidjs-lib": "6.0.2-liquid.37",
"path-browserify": "^1.0.1",
"qr": "^0.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.5.2",
"react-qr-barcode-scanner": "^2.1.8",
"register-service-worker": "^1.7.2",
"scrypt-js": "^3.0.1",
"slip77": "^0.2.0",
"stream-browserify": "^3.0.0",
"tiny-secp256k1": "^2.2.3",
"ws-electrumx-client": "^1.0.5"
},
"scripts": {
"start": "VITE_GIT_COMMIT=$(git rev-parse HEAD) vite",
"build:cloudflare": "VITE_GIT_COMMIT=${CF_PAGES_COMMIT_SHA} vite build",
"build:gitlab": "VITE_GIT_COMMIT=${GITLAB_COMMIT_SHA} vite build",
"build": "VITE_GIT_COMMIT=$(git rev-parse HEAD) vite build",
"test": "vitest run",
"lint": "eslint --ext .ts,.tsx src"
},
"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": "^7.21.11",
"@babel/preset-env": "^7.24.4",
"@tailwindcss/vite": "^4.1.11",
"@types/jest": "^27.0.1",
"@types/node": "^22.16.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/serviceworker": "^0.0.131",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"@vitejs/plugin-react": "^4.7.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": "^29.7.0",
"jest-environment-jsdom": "27.5.1",
"jest-environment-node": "27.5.1",
"prettier": "^2.7.1",
"tailwindcss": "^4.1.4",
"text-encoding": "^0.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vite-plugin-commonjs": "^0.10.4",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"jest": {
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs"
}
}
}