-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.05 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
{
"name": "neuraltrader",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": " prisma generate && next build ",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@google/generative-ai": "^0.24.1",
"@langchain/anthropic": "^0.3.20",
"@langchain/community": "^0.3.34",
"@langchain/core": "^0.3.42",
"@langchain/langgraph": "^0.2.54",
"@langchain/groq": "^0.1.0",
"@langchain/openai": "^0.4.4",
"@mui/icons-material": "^6.4.7",
"@mui/material": "^6.4.7",
"@prisma/client": "^6.4.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-toast": "^1.2.13",
"@solana/spl-token-swap": "^0.4.4",
"@solana/wallet-adapter-base": "^0.9.26",
"@solana/wallet-adapter-react": "^0.15.38",
"@solana/wallet-adapter-react-ui": "^0.9.38",
"@solana/wallet-adapter-wallets": "^0.19.36",
"@solana/web3.js": "^1.98.0",
"@tailwindcss/postcss": "^4.1.5",
"@web3icons/react": "^4.0.27",
"bs58": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"lucide-react": "^0.506.0",
"motion": "^12.9.4",
"next": "15.2.1",
"next-themes": "^0.4.6",
"openai": "^4.98.0",
"p-map": "^7.0.3",
"p-queue": "^8.1.0",
"pg": "^8.13.3",
"prisma": "^6.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.15.3",
"rpc-websockets": "^7.10.0",
"solana-agent-kit": "^2.0.10",
"solana-mcp": "^1.0.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/node": "^22.15.3",
"@types/react": "^19.0.10",
"autoprefixer": "^10.4.21",
"eslint": "^9.26.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.5",
"typescript": "^5.8.3"
},
"nextConfig": {
"reactStrictMode": true,
"swcMinify": true
}
}