-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.15 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
{
"name": "conduit",
"version": "0.1.0",
"description": "A managed execution environment for AI CLI agents",
"author": {
"name": "Dovetail",
"email": "releasebot@dovetailapp.com"
},
"license": "MIT",
"homepage": "https://github.com/heydovetail/conduit",
"repository": {
"type": "git",
"url": "https://github.com/heydovetail/conduit.git"
},
"scripts": {
"dev": "concurrently --names \"ui,server\" --prefix-colors \"cyan,magenta\" \"vite build --watch --config vite.server.config.ts\" \"tsx watch src/server/index.ts\"",
"build": "vite build --config vite.server.config.ts && tsc -p tsconfig.server.json && node scripts/upload-server-sourcemaps.mjs",
"start": "node out/server/index.js",
"docker:build": "docker build -t conduit .",
"docker:run": "docker run -p 7456:7456 conduit",
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc -p tsconfig.web.json --noEmit",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"db:generate": "drizzle-kit generate",
"seed": "tsx scripts/seed-global-mcps.ts",
"db:up": "podman run -d --name conduit-pg -e POSTGRES_USER=conduit -e POSTGRES_PASSWORD=conduit -e POSTGRES_DB=conduit -p 5432:5432 -v conduit-pg:/var/lib/postgresql/data docker.io/library/postgres:16-alpine",
"db:down": "podman rm -f conduit-pg",
"db:logs": "podman logs -f conduit-pg"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@aws-sdk/rds-signer": "^3.1058.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^21.0.2",
"@sentry/node": "^10.63.0",
"@sentry/react": "^10.63.0",
"@tanstack/react-query": "^5.62.16",
"@uiw/react-codemirror": "^4.23.7",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie-parser": "^1.4.7",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.2",
"express": "^4.21.2",
"lucide-react": "^0.468.0",
"node-cron": "^4.2.1",
"nodemailer": "^9.0.1",
"openid-client": "^6.8.2",
"pg": "^8.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.1.7",
"tailwind-merge": "^2.6.0",
"ws": "^8.20.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@sentry/cli": "^3.6.0",
"@sentry/vite-plugin": "^5.3.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.0",
"@types/node": "^22.10.7",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.11.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.10",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.63.0",
"vite": "^6.4.3",
"vitest": "^3.2.6"
},
"overrides": {
"esbuild": "^0.25.0"
}
}