-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "hrdai-team",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"bootstrap": "bun run src/scripts/bootstrap.ts",
"pma": "bun run src/scripts/pma.ts",
"sync": "bun run src/scripts/sync.ts",
"today": "bun run src/scripts/today.ts",
"mcp": "bun run src/mcp/server.ts",
"mcp:smoke": "bun run src/scripts/mcp-smoke.ts",
"mcp:install": "pwsh -ExecutionPolicy Bypass -File tools/install-anzy-mcp.ps1",
"audit:projects": "bun run src/scripts/audit-projects.ts",
"seed": "bun run private/seed/seed.ts || bun run private.example/seed/seed.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit",
"llm-proxy": "bun tools/llm-proxy/server.ts",
"llm-queue": "bun tools/llm-proxy/queue.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.0",
"async-mutex": "^0.5.0",
"clsx": "^2.1.1",
"fast-json-patch": "^3.1.1",
"geist": "^1.7.0",
"lucide-react": "^0.439.0",
"next": "14.2.5",
"openai": "^4.56.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"typescript": "^5.5.4",
"tailwindcss": "^3.4.10",
"postcss": "^8.4.45",
"autoprefixer": "^10.4.20",
"vitest": "^2.0.5",
"@vitest/ui": "^2.0.5",
"@playwright/test": "^1.47.0"
}
}