forked from BoltzExchange/boltz-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.97 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.97 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
{
"name": "boltz-frontend",
"version": "1.8.18",
"description": "Boltz Exchange, Atomic Swaps, Web App",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "npm run regtest && vite",
"test": "npm run regtest && vitest ./tests",
"test:e2e": "npm run regtest && playwright test",
"playwright:install": "playwright install --with-deps chromium",
"dev": "vite",
"preview": "vite preview",
"build": "./build.py && vite build; cp dist/index.html dist/404.html",
"build:regular": "node index-template-vars.mjs --regular && npm run build",
"build:pro": "node index-template-vars.mjs --pro && npm run build",
"check:html-template": "node index-template-vars.mjs --regular && node index-template-vars.mjs --pro",
"build:docker": "docker build --build-arg NETWORK=mainnet . -o build -f build/Dockerfile && docker build --build-arg NETWORK=pro . -o build -f build/Dockerfile",
"mainnet": "cp src/configs/mainnet.ts src/config.ts",
"beta": "cp src/configs/beta.ts src/config.ts",
"pro": "cp src/configs/pro.ts src/config.ts",
"testnet": "cp src/configs/testnet.ts src/config.ts",
"regtest": "cp src/configs/regtest.ts src/config.ts",
"postinstall": "npm run regtest",
"prettier": "npx prettier src public tests e2e docs .github *.ts *.mjs *.json *.html README.md",
"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",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"optimize:assets": "node optimize-assets.mjs",
"check:assets": "node check-assets.mjs"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.2",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.3.0",
"@webbtc/webln-types": "^3.0.0",
"axios": "^1.13.5",
"eslint": "^9.39.2",
"eslint-plugin-solid": "^0.14.5",
"git-cliff": "^2.12.0",
"globals": "^17.3.0",
"jsdom": "^27.3.0",
"prettier": "^3.8.1",
"sass-embedded": "^1.97.3",
"svgo": "^4.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"viem": "^2.46.3",
"vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-plugin-solid": "^2.11.10",
"vite-plugin-wasm": "^3.5.0",
"vitepress": "^1.6.4",
"vitest": "^4.0.18"
},
"dependencies": {
"@fontsource/noto-mono": "^5.2.5",
"@fontsource/noto-sans": "^5.2.10",
"@ledgerhq/hw-app-eth": "^7.4.0",
"@ledgerhq/hw-transport-webhid": "^6.31.0",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@reown/appkit": "1.8.19",
"@reown/appkit-adapter-ethers": "1.8.19",
"@scure/base": "^2.0.0",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@scure/btc-signer": "^2.0.1",
"@solid-primitives/i18n": "^2.2.1",
"@solid-primitives/storage": "^4.3.4",
"@solidjs/router": "^0.15.4",
"@trezor/connect-web": "^9.7.1",
"@vulpemventures/secp256k1-zkp": "^3.2.1",
"bignumber.js": "^9.3.1",
"bolt11": "^1.4.1",
"boltz-bolt12": "^0.2.0",
"boltz-core": "^4.0.1",
"buffer": "^6.0.3",
"create-hmac": "^1.1.7",
"ethers": "^6.16.0",
"liquidjs-lib": "^6.0.2-liquid.37",
"localforage": "^1.10.0",
"loglevel": "^1.9.2",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.4",
"solid-icons": "^1.2.0",
"solid-js": "1.9.11"
}
}