-
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.58 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.58 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": "local-mcp-gateway",
"version": "0.2.0",
"private": true,
"description": "Aggregate multiple MCP servers into a single endpoint with web UI, OAuth 2.1, and profile-based tool management",
"scripts": {
"setup": "bash scripts/setup-env.sh",
"dev": "turbo run dev",
"dev:https": "turbo run dev:https",
"dev:backend": "turbo run dev --filter=backend",
"dev:frontend": "turbo run dev --filter=frontend",
"build": "turbo run build",
"start": "pnpm build && concurrently \"pnpm --filter backend start\" \"pnpm --filter frontend start\"",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:e2e": "playwright test",
"test:e2e:mcp": "tsx scripts/test-with-playwright-mcp.ts",
"test:coverage": "turbo run test:coverage",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "turbo run typecheck",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up",
"docker:down": "docker-compose down",
"create-custom-mcp": "node scripts/create-custom-mcp.js",
"create-package": "node scripts/create-package.js",
"db:create": "docker compose up -d postgres",
"db:migrate": "pnpm --filter @dxheroes/local-mcp-database prisma:migrate:deploy",
"db:migrate:dev": "pnpm --filter @dxheroes/local-mcp-database prisma:migrate:dev",
"db:seed": "pnpm --filter @dxheroes/local-mcp-database prisma:seed",
"db:reset": "pnpm --filter @dxheroes/local-mcp-database db:reset",
"db:studio": "pnpm --filter @dxheroes/local-mcp-database prisma:studio",
"db:push": "pnpm --filter @dxheroes/local-mcp-database prisma:push",
"db:generate": "pnpm --filter @dxheroes/local-mcp-database prisma:generate"
},
"keywords": [
"mcp",
"model-context-protocol",
"proxy",
"gateway",
"ai",
"claude",
"cursor"
],
"author": "",
"license": "Elastic-2.0",
"packageManager": "pnpm@10.32.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@modelcontextprotocol/sdk": "^1.27.1",
"@playwright/test": "^1.58.2",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"turbo": "^2.8.15",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {}
}