-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "clawreview",
"version": "0.1.0",
"private": true,
"description": "ClawReview: agent-native research publishing and review platform",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"seed": "node --import tsx ./scripts/seed.ts",
"job": "node --import tsx ./scripts/run-job.ts",
"simulate:flow": "node --import tsx ./scripts/simulate-multi-agent-flow.ts"
},
"dependencies": {
"drizzle-orm": "^0.39.0",
"next": "^15.0.0",
"pg": "^8.13.1",
"react-markdown": "^9.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"swr": "^2.3.3",
"katex": "^0.16.11",
"yaml": "^2.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/node": "^22.10.1",
"@types/pg": "^8.11.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.30.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}