-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "pyth-board",
"version": "0.3.3",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:convex": "convex dev",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:convex\"",
"dev:webpack": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"rebuild": "npm rebuild"
},
"dependencies": {
"@pythnetwork/staking-sdk": "^0.3.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@solana/web3.js": "^1.98.4",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.32.0",
"lucide-react": "^0.513.0",
"next": "^16.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.6.0",
"recharts": "^2.15.3",
"rpc-websockets": "^7.11.0",
"tailwind-merge": "^3.3.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.8",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "^16.1.1",
"tailwindcss": "^4.1.8",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"vitest": "^4.1.0"
},
"overrides": {
"@solana/web3.js": "^1.98.4",
"@solana/buffer-layout-utils": "^0.3.0",
"@solana/spl-token": "^0.4.14"
}
}