-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.6 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.6 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
{
"name": "rundown",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -c auto -n 'next,docker,studio' 'next dev --turbopack --experimental-https' 'docker compose up' 'drizzle-kit studio'",
"devf": "next dev --turbopack --experimental-https",
"build": "next build",
"start": "next start",
"lint": "biome check",
"lintf": "biome check --write --unsafe",
"bull-board": "tsx server/controllers/bull-board.ts",
"db:push": "drizzle-kit push",
"prod:worker": "tsx server/controllers/worker.ts",
"prod:register-jobs": "tsx server/controllers/register-jobs.ts",
"build:worker": "esbuild server/controllers/worker.ts --bundle --platform=node --target=node22 --outfile=build/services/worker.js",
"bootstrap": "drizzle-kit push",
"crawl": "tsx server/controllers/crawl.ts",
"typecheck": "tsc"
},
"dependencies": {
"@bull-board/api": "^6.12.0",
"@bull-board/express": "^6.12.0",
"@modelcontextprotocol/sdk": "^1.17.2",
"@next/env": "^16.0.7",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@slack/bolt": "^4.4.0",
"@slack/logger": "^4.0.0",
"@slack/oauth": "^3.0.3",
"@slack/web-api": "^7.9.3",
"@slack/webhook": "^7.0.5",
"better-auth": "^1.3.4",
"bullmq": "^5.56.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.4",
"express": "^5.1.0",
"lucide-react": "^0.536.0",
"mcp-handler": "^1.0.1",
"nanoid": "^5.1.5",
"next": "^16.1.1",
"next-themes": "^0.4.6",
"openai": "^5.12.2",
"pg": "^8.16.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-markdown": "^10.1.0",
"rss-parser": "^3.13.0",
"simple-icons": "^15.10.0",
"slackify-markdown": "^4.5.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tsscmp": "^1.0.6",
"zod": "^3"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/express": "^5.0.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/tsscmp": "^1.0.2",
"concurrently": "^9.2.0",
"drizzle-kit": "^0.31.4",
"esbuild": "^0.25.8",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
}
}