-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 955 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 955 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
36
37
38
39
{
"name": "ravendr",
"version": "2.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"dev:tasks": "tsx watch src/render/tasks/index.ts",
"build": "tsc",
"start": "node dist/server.js",
"start:tasks": "node dist/render/tasks/index.js",
"tasks": "node dist/render/tasks/index.js",
"migrate": "tsx scripts/migrate.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.0.0",
"@mastra/core": "^1.24.1",
"@mastra/memory": "^1.15.0",
"@mastra/pg": "^1.9.1",
"@renderinc/sdk": "^0.5.0",
"hono": "^4.0.0",
"pg": "^8.13.0",
"pino": "^9.0.0",
"ws": "^8.18.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"@types/ws": "^8.5.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}