-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "eve-code",
"private": true,
"version": "0.1.0",
"license": "MIT",
"type": "module",
"scripts": {
"check": "biome check .",
"dev": "concurrently -k 'bun:dev:*'",
"dev:convex": "convex dev",
"dev:eve": "eve dev --port 4879 --no-ui",
"dev:web": "vite",
"build": "tsc --noEmit && vite build",
"build:eve": "eve build && bun scripts/embed-convex-url.ts",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ai-sdk/gateway": "^4.0.0",
"@convex-dev/react-query": "^0.1.0",
"@fontsource-variable/geist": "^5.2.9",
"@pierre/diffs": "^1.2.12",
"@pierre/trees": "^1.0.0-beta.5",
"@shadcn/react": "^0.2.1",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/react-query": "^5.101.2",
"@vercel/oidc": "^3.8.0",
"@vercel/sandbox": "^2.3.0",
"ai": "^7.0.0",
"convex": "^1.42.2",
"diff": "^9.0.0",
"eve": "^0.24.6",
"lucide-react": "^1.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router": "^8.3.0",
"streamdown": "^2.5.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"typescript": "^7.0.2",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}