-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.41 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
{
"name": "FC-Footy",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"compile": "tsc",
"check": "next lint && tsc",
"subgraph:codegen": "cd subgraph && yarn codegen",
"subgraph:build": "cd subgraph && yarn build",
"subgraph:deploy": "cd subgraph && yarn deploy",
"rag:test": "node scripts/rag-test.mjs",
"rag:test:arsenal": "node scripts/rag-test.mjs --preset arsenal-chelsea",
"rag:test:man-utd": "node scripts/rag-test.mjs --preset man-utd-liverpool",
"rag:test:man-city": "node scripts/rag-test.mjs --preset man-city-arsenal",
"rag:test:chelsea": "node scripts/rag-test.mjs --preset chelsea-liverpool",
"rag:test:leeds": "node scripts/rag-test.mjs --preset leeds-everton",
"rag:test:help": "node scripts/rag-test.mjs --help",
"gameweek:summary": "node scripts/gameweek-summary.mjs",
"gameweek:summary:test": "node scripts/gameweek-summary-test.mjs",
"scoresquare:players": "node scripts/scoresquare-players-test.mjs",
"drury:test": "node scripts/peter-drury-test.mjs",
"manager:picks:points": "node scripts/manager-picks-points.mjs",
"managers:chips": "node scripts/list-managers-chips.mjs"
},
"type": "module",
"engines": {
"node": "22.x"
},
"dependencies": {
"@apollo/client": "^3.13.3",
"@aws-sdk/client-s3": "^3.1029.0",
"@divvi/referral-sdk": "^1.0.0",
"@farcaster/auth-kit": "^0.6.0",
"@farcaster/frame-core": "^0.3.7",
"@farcaster/frame-node": "^0.1.7",
"@farcaster/hub-web": "^0.9.5",
"@farcaster/miniapp-sdk": "^0.1.8",
"@farcaster/miniapp-wagmi-connector": "^1.0.0",
"@farcaster/quick-auth": "^0.0.8",
"@google/generative-ai": "^0.24.1",
"@langchain/community": "^0.3.53",
"@langchain/core": "^0.3.72",
"@langchain/openai": "^0.6.9",
"@neynar/nodejs-sdk": "^3.34.0",
"@privy-io/react-auth": "^2.0.4",
"@radix-ui/react-label": "^2.1.1",
"@standard-crypto/farcaster-js": "^7.4.0",
"@supabase/supabase-js": "^2.47.3",
"@tanstack/react-query": "^5.65.1",
"@types/lodash": "^4.17.16",
"@upstash/redis": "^1.34.3",
"@wagmi/core": "^2.18.1",
"axios": "^1.11.0",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"esbuild": "^0.24.2",
"ethers": "^6.13.5",
"fast-xml-parser": "^5.7.3",
"file-saver": "^2.0.5",
"formik": "^2.4.6",
"graphql": "^16.10.0",
"html-to-image": "^1.11.13",
"html2canvas": "^1.4.1",
"idb-keyval": "^6.2.1",
"jotai": "^2.12.0",
"langchain": "^0.3.31",
"lodash": "^4.17.21",
"lucide-react": "^0.469.0",
"next": "15.2.8",
"next-auth": "^4.24.11",
"node-fetch": "^2.7.0",
"ox": "^0.4.2",
"permissionless": "^0.2.27",
"pingem-sdk": "^0.1.14",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-player": "^3.4.0",
"react-qr-code": "^2.0.15",
"react-rnd": "^10.4.14",
"swr": "^2.3.6",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.21.55",
"wagmi": "^2.14.3"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}