-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 909 Bytes
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
{
"name": "warmline",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "concurrently -k \"pnpm dev:server\" \"pnpm dev:web\"",
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "node dist-server/server/index.js",
"test": "vitest run"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.115.0",
"@call-e/calle": "0.2.0",
"@fastify/static": "^8.3.0",
"fastify": "^5.6.1",
"openai": "^7.4.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"concurrently": "^9.2.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^7.1.4",
"vitest": "^3.2.4"
}
}