-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.25 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.25 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "orpheus",
"version": "0.2.0",
"engines": {
"node": "20.18.3"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,scss}\"",
"format:fix": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,scss}\"",
"prepare": "husky && husky install",
"spell-check": "cspell \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,scss}\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"cspell"
],
"*.{json,md,yml,scss}": [
"prettier --write"
]
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@cloudflare/next-on-pages": "^1.13.10",
"@coral-xyz/borsh": "^0.31.1",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.3",
"@next/third-parties": "^14.2.3",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@sentry/nextjs": "^8.26.0",
"@solana/spl-token": "^0.4.13",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "^1.98.2",
"@zeus-network/zpl-sdk": "^0.11.1",
"axios": "^1.7.2",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.2",
"bip32": "^4.0.0",
"bip65": "^1.0.3",
"bitcoinjs-lib": "^6.1.5",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"crypto-browserify": "^3.12.0",
"d3": "^7.9.0",
"dayjs": "^1.11.13",
"debounce": "^2.2.0",
"ecpair": "^2.1.0",
"framer-motion": "^11.1.7",
"fs": "^0.0.1-security",
"lucide-react": "^0.456.0",
"motion": "^12.0.11",
"next": "^14.2.3",
"pino-pretty": "^13.0.0",
"prettier": "^3.2.5",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"react-spring-bottom-sheet": "^3.4.1",
"react-toastify": "^10.0.5",
"sass": "^1.76.0",
"sats-connect": "^3.0.1",
"stream": "^0.0.2",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240903.0",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@next/eslint-plugin-next": "^14.2.3",
"@tailwindcss/typography": "^0.5.13",
"@types/bn.js": "^5.1.5",
"@types/d3": "^7.4.3",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/pako": "^2.0.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"cspell": "^8.13.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.8",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"browser": {
"crypto": false,
"stream": false
}
}