forked from BoltzExchange/boltz-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.71 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
{
"name": "boltz-frontend",
"version": "1.0.1",
"description": "Boltz Exchange, Atomic swaps, frontend",
"type": "module",
"scripts": {
"start": "cp src/configs/config.regtest.js src/config.js && vite",
"test": "cp src/configs/config.regtest.js src/config.js && vitest tests",
"dev": "vite",
"serve": "vite preview",
"mainnet": "cp src/configs/config.mainnet.js src/config.js; vite build; cp dist/index.html dist/404.html",
"beta": "cp src/configs/config.beta.js src/config.js; vite build; cp dist/index.html dist/404.html",
"testnet": "cp src/configs/config.testnet.js src/config.js; vite build; cp dist/index.html dist/404.html",
"prettier": "./node_modules/prettier/bin-prettier.js --write src tests",
"prettier-check": "./node_modules/prettier/bin-prettier.js --check src tests",
"i18n-check": "node tools/i18n-check.js",
"changelog": "git-cliff -o CHANGELOG.md"
},
"devDependencies": {
"@solidjs/testing-library": "^0.7.1",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"vite": "^4.3.9",
"vite-plugin-node-polyfills": "^0.8.2",
"vite-plugin-solid": "^2.6.1",
"vitest": "^0.31.3"
},
"dependencies": {
"@noble/secp256k1": "^1.7.1",
"@scure/base": "^1.1.1",
"@solid-primitives/i18n": "^1.4.0",
"@solid-primitives/storage": "^1.3.9",
"@solidjs/router": "^0.8.2",
"@vulpemventures/secp256k1-zkp": "^3.1.0",
"bignumber.js": "^9.1.1",
"bitcoinjs-lib": "^6.1.2",
"bolt11": "^1.4.1",
"boltz-core": "^1.0.1",
"buffer": "^6.0.3",
"create-hmac": "^1.1.7",
"ecpair": "^2.1.0",
"liquidjs-lib": "^6.0.2-liquid.28",
"loglevel": "^1.8.1",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.0",
"solid-js": "^1.7.0"
}
}