-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.36 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.36 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
{
"name": "flow",
"version": "2.0.0",
"description": "Flow: autonomous quadratic tipping on Rumble. 1000 fans watching beats any whale. WDK-powered, onchain.",
"type": "module",
"scripts": {
"dev": "concurrently -n next,agent -c blue,green \"next dev --webpack\" \"AGENT_PORT=3001 tsx watch src/agent/index.ts | pino-pretty\"",
"dev:next": "next dev --webpack",
"dev:agent": "AGENT_PORT=3001 tsx watch src/agent/index.ts | pino-pretty",
"build": "next build --webpack && tsc -p tsconfig.server.json",
"build:next": "next build --webpack",
"build:server": "tsc -p tsconfig.server.json",
"start": "concurrently -n next,agent \"next start\" \"AGENT_PORT=3001 node dist/agent/index.js\"",
"start:agent": "AGENT_PORT=3001 node dist/agent/index.js",
"test": "vitest run",
"test:watch": "vitest",
"simulate": "tsx scripts/simulate-round.ts",
"simulate:rumble": "tsx src/rumble/simulator.ts",
"seed-pool": "tsx scripts/seed-pool.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.37.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/supabase-js": "^2.100.0",
"@tailwindcss/postcss": "^4.2.2",
"@tetherto/wdk": "^1.0.0-beta.6",
"@tetherto/wdk-pricing-bitfinex-http": "^1.0.0-beta.2",
"@tetherto/wdk-pricing-provider": "^1.0.0-beta.3",
"@tetherto/wdk-protocol-bridge-usdt0-evm": "^1.0.0-beta.3",
"@tetherto/wdk-protocol-fiat-moonpay": "^1.0.0-beta.1",
"@tetherto/wdk-wallet-btc": "^1.0.0-beta.7",
"@tetherto/wdk-wallet-evm": "^1.0.0-beta.10",
"@tetherto/wdk-wallet-evm-erc-4337": "^1.0.0-beta.5",
"@tetherto/wdk-wallet-ton": "^1.0.0-beta.7",
"@tetherto/wdk-wallet-ton-gasless": "^1.0.0-beta.4",
"@tetherto/wdk-wallet-tron": "^1.0.0-beta.4",
"@tetherto/wdk-wallet-tron-gasfree": "^1.0.0-beta.4",
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.3.0",
"@types/cors": "^2.8.19",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@web3-storage/w3up-client": "^17.3.0",
"better-sqlite3": "^12.8.0",
"bip322-js": "^3.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"express": "^4.18.3",
"grammy": "^1.21.1",
"lucide-react": "^1.0.1",
"next": "^16.2.1",
"node-cron": "^3.0.3",
"pino": "^8.21.0",
"postcss": "^8.5.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sodium-javascript": "^0.8.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tronweb": "^5.3.4",
"uuid": "^9.0.1",
"ws": "^8.20.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/express": "^4.17.21",
"@types/node": "^20.11.17",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.8",
"pino-pretty": "^13.1.3",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
}
}