forked from jaturapornchai/bcproxyai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "sml-gateway",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"build:mcp": "tsc -p tsconfig.mcp.json",
"mcp": "node dist/mcp/server.js",
"test": "vitest run",
"test:watch": "vitest",
"migrate:data": "tsx scripts/migrate-sqlite-to-pg.ts",
"loadtest:smoke": "k6 run loadtest/smoke.js",
"loadtest:dashboard": "k6 run loadtest/dashboard.js",
"loadtest:chat": "k6 run loadtest/chat.js",
"loadtest:ratelimit": "k6 run loadtest/ratelimit.js",
"loadtest:stress": "k6 run loadtest/stress.js",
"loadtest:quality": "k6 run loadtest/quality.js",
"loadtest:quality:long": "k6 run loadtest/quality.js --duration 30m --vus 3",
"test:quality": "tsx loadtest/quality-test.ts",
"test:quality:long": "tsx loadtest/quality-test.ts --rounds=0 --concurrency=3",
"autoscale": "node scripts/autoscale.mjs"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.49",
"@anthropic-ai/sdk": "^0.82.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"ai": "^6.0.142",
"better-sqlite3": "^12.8.0",
"ioredis": "^5.10.1",
"next": "16.2.2",
"next-auth": "^5.0.0-beta.31",
"node-cron": "^4.2.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"undici": "^8.0.2",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.1.2",
"drizzle-orm": "^0.45.2",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"postgres": "^3.4.9",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.2"
}
}