-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.88 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.88 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
{
"name": "auto-swe",
"version": "0.0.1",
"description": "Auto SWE",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsx src/server/index.ts",
"dev": "concurrently -n server,dashboard -c blue,green \"npm run dev:server\" \"npm run dev:dashboard\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:dashboard": "vite",
"build": "vite build",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build"
},
"keywords": [],
"license": "Mozilla Public License Version 2.0",
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-testing-library": "^7.16.2",
"eslint-plugin-unused-imports": "^4.4.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"madge": "^8.0.0",
"supertest": "^7.2.2",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.2",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^0.2.0",
"@ai-sdk/react": "^3.0.139",
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@langchain/core": "^1.1.35",
"@langchain/langgraph": "^1.2.5",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.1",
"@streamdown/cjk": "^1.0.3",
"@streamdown/code": "^1.1.1",
"@streamdown/math": "^1.0.2",
"@streamdown/mermaid": "^1.0.2",
"@tailwindcss/vite": "^4.2.2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"ai": "^4.3.19",
"better-sqlite3": "^12.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cors": "^2.8.6",
"deepagents": "^1.8.4",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"lucide-react": "^1.0.1",
"nanoid": "^5.1.7",
"node-pty": "^1.1.0",
"react": "^19.0.0",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.2",
"shadcn": "^4.1.0",
"sharp": "^0.34.5",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"use-stick-to-bottom": "^1.1.3",
"ws": "^8.20.0",
"yaml": "^2.8.3",
"zod": "^3.24.0"
}
}