-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.26 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.26 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
{
"name": "eliza-leaderboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:local": "next build && cp -r data out/ && cp -r out/data/api/* out/api/",
"start": "next start",
"lint": "eslint src cli",
"typecheck": "tsc --noEmit",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"check": "bun run lint & bun run typecheck",
"serve": "bunx serve@latest out",
"db:generate": "bunx drizzle-kit generate",
"db:studio": "bunx drizzle-kit studio",
"db:migrate": "bun run drizzle/migrate.ts",
"pipeline": "bun run cli/analyze-pipeline.ts",
"pipeline:import-summaries": "bun run cli/analyze-pipeline.ts import-summaries",
"pipeline:export-leaderboard": "bun run cli/analyze-pipeline.ts export-leaderboard",
"prepare": "husky install",
"tasks:list": "bunx task-master list",
"data:sync": "bun run cli/data-sync.ts"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@date-fns/utc": "^2.1.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-virtual": "^3.13.18",
"@types/minimatch": "^6.0.0",
"axios": "^1.13.3",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.2",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"fuzzysort": "^3.1.0",
"glob": "^13.0.0",
"lucide-react": "^0.563.0",
"minimatch": "^10.1.1",
"next": "16.1.5",
"next-themes": "^0.4.6",
"ora": "^9.1.0",
"p-map": "^7.0.4",
"p-retry": "^7.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.7.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"unist-util-visit": "^5.1.0",
"viem": "^2.45.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.6",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"cli-table3": "^0.6.5",
"drizzle-kit": "^0.31.8",
"eslint": "^9.39.2",
"eslint-config-next": "16",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3"
},
"type": "module"
}