-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 861 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 861 Bytes
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
{
"name": "examples-dapps-sdk",
"version": "1.0.0",
"description": "Repository contains examples on how to interact with the xDeFi dApps SDK",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@keplr-wallet/types": "^0.12.90",
"@scure/base": "^1.1.9",
"@solana/web3.js": "^1.95.1",
"bignumber.js": "4.0.4",
"bs58": "^6.0.0",
"micro-btc-signer": "^0.4.2",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"sats-connect": "^2.8.0",
"web3": "^4.8.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}