-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.2 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
{
"name": "kinkong",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"analyze-sentiment": "ts-node scripts/analyze-market-sentiment.ts",
"fetch-tokens": "ts-node --transpile-only scripts/fetch-token-data.ts",
"reallocation": "ts-node scripts/execute-reallocation.ts",
"snapshot": "python scripts/take_snapshot.py",
"calculate-signals": "ts-node scripts/calculate-closed-signals.ts",
"wallet-snapshot": "python engine/wallet_snapshots.py",
"token-search": "python engine/tokens.py",
"token-snapshot": "python engine/token_snapshots.py",
"generate-signals": "python engine/signals.py",
"monitor-trades": "python engine/trades.py",
"token-transfer": "node engine/send_tokens.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.10.2",
"@heroicons/react": "^2.2.0",
"@solana/spl-token": "^0.3.11",
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"@solana/wallet-adapter-react-ui": "0.9.34",
"@solana/wallet-adapter-wallets": "0.19.25",
"@solana/web3.js": "^1.89.1",
"@tailwindcss/typography": "^0.5.10",
"@types/node-fetch": "^2.6.12",
"airtable": "^0.12.2",
"bs58": "^6.0.0",
"chart.js": "^3.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"force-graph": "^1.43.4",
"framer-motion": "^11.18.2",
"lightweight-charts": "^5.0.2",
"next": "14.0.0",
"node-fetch": "^2.7.0",
"openai": "^4.86.1",
"pino-pretty": "^13.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.6",
"react-markdown": "^9.0.3",
"recharts": "^2.10.3",
"rpc-websockets": "^7.5.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/airtable": "^0.10.5",
"@types/chart.js": "^2.9.41",
"@types/dotenv": "^8.2.3",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"pino-pretty": "^10.2.3",
"postcss": "^8.5.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.0.0"
}
}