-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"name": "pidra",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun run src/index.ts",
"run:pipeline": "bun run src/pipeline/run.ts",
"cron": "bun run src/cron.ts",
"server": "bun run src/server/index.ts",
"dashboard": "cd dashboard && bun run dev",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"context-builder": "bun run context-builder/run.ts",
"context-builder:dry": "bun run context-builder/run.ts --dry-run",
"context-builder:full": "bun run context-builder/run.ts --full"
},
"dependencies": {
"drizzle-orm": "^0.45.2",
"googleapis": "^171.4.0",
"hono": "^4.12.19",
"imap": "^0.8.19",
"mailparser": "^3.9.8",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.7",
"openai": "^6.38.0",
"rss-parser": "^3.13.0",
"web-push": "^3.6.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/imap": "^0.8.43",
"@types/mailparser": "^3.4.6",
"@types/node": "^25.9.0",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^8.0.0",
"@types/web-push": "^3.6.4",
"drizzle-kit": "^0.31.10"
}
}