-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.18 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.18 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
115
116
117
118
119
120
121
122
123
124
{
"name": "contextforge-app",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.17.1"
},
"scripts": {
"dev": "next dev --port 3001",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"test": "node scripts/ci/skip-suite.js test",
"test:unit": "node scripts/ci/skip-suite.js unit",
"test:integration": "node scripts/ci/skip-suite.js integration",
"test:e2e": "node scripts/ci/skip-suite.js e2e",
"test:performance": "node scripts/ci/skip-suite.js performance",
"test:security": "node scripts/ci/skip-suite.js security",
"test:accessibility": "node scripts/ci/skip-suite.js accessibility",
"test:code-quality": "node scripts/ci/skip-suite.js code-quality",
"test:summary": "node scripts/ci/skip-suite.js summary",
"docker:test": "node scripts/ci/skip-suite.js docker",
"swarm:start": "ts-node scripts/swarm-start.ts",
"swarm:status": "ts-node scripts/swarm-status.ts",
"swarm:metrics": "ts-node scripts/swarm-metrics.ts",
"swarm:health": "ts-node scripts/swarm-health.ts",
"swarm:stop": "ts-node scripts/swarm-stop.ts",
"server:start": "ts-node scripts/start-server.ts",
"server:dev": "concurrently \"pnpm dev\" \"pnpm server:start\"",
"queue:status": "ts-node scripts/queue-status.ts",
"queue:clear": "ts-node scripts/queue-clear.ts",
"tsc": "tsc -p tsconfig.typecheck.json"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.60.0",
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^5.2.1",
"@monaco-editor/react": "^4.7.0",
"@octokit/rest": "^22.0.0",
"@playwright/test": "^1.54.2",
"@prisma/client": "^6.15.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@types/js-yaml": "^4.0.9",
"@types/ws": "^8.18.1",
"bcryptjs": "^3.0.2",
"better-sqlite3": "^12.2.0",
"bull": "^4.16.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"formidable": "^3.5.4",
"gray-matter": "^4.0.3",
"ioredis": "^5.7.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.539.0",
"minimatch": "^10.0.3",
"next": "15.4.10",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"octokit": "^5.0.3",
"openai": "^5.12.2",
"papaparse": "^5.5.3",
"prisma": "^6.15.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.62.0",
"react-hot-toast": "^2.5.2",
"react-is": "^19.1.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.4",
"recharts": "^3.1.2",
"redis": "^5.8.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.18.3",
"xml2js": "^0.6.2",
"yaml": "^2.8.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/xml2js": "^0.4.14",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}