-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.27 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 4.27 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "teamclaw",
"version": "1.0.5",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"init-db": "npx tsx scripts/db/init-db.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit/",
"test:integration": "vitest run tests/integration/",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:stress": "playwright test --config=playwright.stress.config.ts",
"test:security": "playwright test --config=playwright.security.config.ts",
"test:all": "bash tests/scripts/run-all-tests.sh all",
"test:report": "bash tests/scripts/run-all-tests.sh",
"test:perf": "bash tests/performance/run-performance-tests.sh",
"test:perf:api": "vitest run tests/performance/api-benchmark.test.ts",
"test:perf:db": "vitest run tests/performance/database.test.ts",
"test:perf:mcp": "vitest run tests/performance/mcp.test.ts",
"test:perf:gateway": "vitest run tests/performance/gateway.test.ts",
"test:perf:frontend": "playwright test tests/performance/frontend.spec.ts",
"arch:check": "npm run arch:knip && npm run arch:cruise",
"arch:knip": "knip --no-progress",
"arch:cruise": "depcruise --validate .dependency-cruiser.cjs app lib store db components",
"mock:gateway": "npx tsx scripts/mock-gateway/mock-gateway.ts",
"mock:test": "npx tsx scripts/mock-gateway/quick-test.ts",
"mock:test:v101": "node -e \"require('./scripts/mock-gateway/quick-v101.ts')\"",
"mock:test:knowledge": "npx tsx scripts/mock-gateway/test-knowledge-closed-loop.ts",
"mock:test:sop": "npx tsx scripts/mock-gateway/test-sop-flow.ts",
"mock:test:stress": "npx tsx scripts/mock-gateway/stress-test.ts",
"test:task-push": "npx tsx scripts/testing/test-task-push.ts",
"test:chat": "npx vitest run tests/integration/chat-stream.test.ts",
"test:chat:integration": "npx tsx scripts/testing/test-chat-integration.ts",
"test:chat:auto": "npx tsx scripts/testing/test-full-automation.ts",
"test:chat:e2e": "npx playwright test tests/e2e/chat-stream.spec.ts --headed"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language-data": "^6.5.2",
"@codemirror/view": "^6.40.0",
"@uiw/react-codemirror": "^4.25.8",
"argon2": "^0.44.0",
"better-sqlite3": "^12.6.2",
"chokidar": "^3.6.0",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.1",
"drizzle-orm": "^0.45.1",
"html-to-image": "^1.11.13",
"i18next": "^23.11.0",
"jszip": "^3.10.1",
"lucide-react": "^0.565.0",
"nanoid": "^5.1.6",
"next": "^14.2.35",
"postgres": "^3.4.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"unified": "^11.0.5",
"ws": "^8.19.0",
"zod": "^4.3.6",
"zustand": "^4.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@next/bundle-analyzer": "^16.1.6",
"@next/eslint-plugin-next": "^16.1.6",
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.13",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.0",
"dependency-cruiser": "^17.3.9",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"knip": "^5.86.0",
"linkedom": "^0.18.12",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}