forked from bordalix/dex.nextjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "dex.nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "npx prettier --check pages/ components/ lib/",
"prettier:fix": "npx prettier --write pages/ components/ lib/"
},
"dependencies": {
"@ionio-lang/ionio": "^0.3.0",
"@protobuf-ts/grpcweb-transport": "^2.8.3",
"@types/tiny-secp256k1": "^2.0.1",
"@vulpemventures/secp256k1-zkp": "^2.1.1",
"axios": "^1.3.6",
"bip32": "^3.0.1",
"bolt11": "^1.4.0",
"bs58check": "^3.0.1",
"bulma": "^0.9.3",
"bulma-toast": "^2.4.2",
"cookies": "^0.8.0",
"decimal.js": "^10.3.1",
"file-saver": "^2.0.5",
"liquidjs-lib": "^6.0.2-liquid.23",
"marina-provider": "^2.0.0",
"next": "^12.2.2",
"next-qrcode": "^2.2.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"recharts": "^2.1.10",
"sass": "^1.49.11",
"sharp": "^0.32.6",
"swr": "^1.2.2",
"webln": "^0.3.0",
"ws-electrumx-client": "^1.0.1"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/styled-jsx": "^3.4.4",
"buffer": "^6.0.3",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "4.6.3"
}
}