-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
92 lines (92 loc) · 3.5 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
{
"name": "boltz-frontend",
"version": "1.5.1",
"description": "Boltz Exchange, Atomic Swaps, Web App",
"scripts": {
"start": "npm run regtest && vite",
"test": "jest --runInBand ./tests",
"test:e2e": "playwright test",
"playwright:install": "playwright install --with-deps chromium",
"dev": "vite",
"regtest": "cp src/configs/regtest.json public/config.json",
"preview": "vite preview",
"build": "./build.py && vite build; cp dist/index.html dist/404.html",
"mainnet": "cp src/configs/mainnet.json public/config.json",
"beta": "cp src/configs/beta.json public/config.json",
"testnet": "cp src/configs/testnet.json public/config.json",
"prettier": "npx prettier src public tests e2e docs *.js *.ts *.mjs",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check",
"tsc": "tsc",
"lint": "eslint --max-warnings 0 .",
"changelog": "git-cliff -o CHANGELOG.md"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.13.0",
"@playwright/test": "^1.48.2",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.14",
"@webbtc/webln-types": "^3.0.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"babel-preset-jest": "^29.6.3",
"babel-preset-solid": "1.8.19",
"eslint": "^9.13.0",
"eslint-plugin-solid": "^0.14.3",
"eventsource": "^2.0.2",
"git-cliff": "^2.6.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"sass-embedded": "^1.80.6",
"solid-jest": "^0.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.10",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-solid": "^2.10.2",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@fontsource/noto-mono": "^5.1.0",
"@fontsource/noto-sans": "^5.1.0",
"@ledgerhq/hw-app-eth": "6.38.2",
"@ledgerhq/hw-transport-webhid": "^6.29.4",
"@scure/base": "^1.1.9",
"@solid-primitives/i18n": "^2.1.1",
"@solid-primitives/storage": "^4.2.1",
"@solidjs/router": "^0.15.0",
"@trezor/connect-web": "^9.4.2",
"@vulpemventures/secp256k1-zkp": "^3.2.1",
"bignumber.js": "^9.1.2 ",
"bitcoinjs-lib": "^6.1.6",
"bolt11": "^1.4.1",
"boltz-bolt12": "^0.1.3",
"boltz-core": "^2.1.3",
"buffer": "^6.0.3",
"create-hmac": "^1.1.7",
"ecpair": "^2.1.0",
"ethers": "^6.13.4",
"iframe-resizer": "^5.3.2",
"liquidjs-lib": "^6.0.2-liquid.36",
"localforage": "^1.10.0",
"loglevel": "^1.9.2",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.4",
"solid-icons": "^1.1.0",
"solid-js": "1.8.21"
}
}