-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.25 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
{
"name": "grasp",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"dev:web": "vite web",
"dev:server": "tsx watch ./server/api/index.ts",
"dev": "concurrently -n server,client -c blue,green \"pnpm dev:server\" \"pnpm dev:web\"",
"build:web": "vite build web",
"build:server": "tsc -p tsconfig.node.json",
"build": "pnpm build:web && pnpm build:server",
"start": "NODE_ENV=production node server/dist/api/index.js",
"type-check": "tsc --build",
"type-check:web": "tsc --project web/tsconfig.json",
"type-check:server": "tsc --project server/tsconfig.json"
},
"keywords": [],
"author": "",
"license": "BSL-1.1",
"packageManager": "pnpm@10.5.2",
"dependencies": {
"@ai-sdk/anthropic": "^1.2.10",
"@ai-sdk/openai": "^1.3.22",
"@anthropic-ai/bedrock-sdk": "^0.21.2",
"@anthropic-ai/sdk": "^0.39.0",
"@headlessui/react": "^2.2.1",
"@heroicons/react": "^2.2.0",
"@modelcontextprotocol/sdk": "^1.9.0",
"@tailwindcss/vite": "^4.1.4",
"ai": "^4.3.13",
"axios": "^1.8.4",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"framer-motion": "^12.7.2",
"morgan": "^1.10.0",
"openai": "^4.98.0",
"playwright": "^1.52.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.5.0",
"sharp": "^0.34.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"uuid": "^11.1.0",
"yaml": "^2.7.1",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/morgan": "^1.9.9",
"@types/node": "^22.14.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"nodemon": "^3.1.9",
"tailwindcss": "^4.1.4",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vite": "^6.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}