-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.27 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
{
"name": "mailflow-studio",
"version": "0.1.0",
"description": "Cloudflare-native email operations platform built on Workers, Email Workers, D1, Hono, and TypeScript.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ahmedvnabil/mailflow.git"
},
"scripts": {
"build:css": "node scripts/build-css.mjs",
"build:vendor": "node scripts/build-vendor.mjs",
"dev": "wrangler dev --local",
"deploy": "npm run build:css && npm run build:vendor && wrangler deploy",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"migrate:local": "wrangler d1 migrations apply email_gateway_studio --local",
"migrate:remote": "wrangler d1 migrations apply email_gateway_studio --remote"
},
"dependencies": {
"@hono/zod-validator": "^0.5.0",
"hono": "^4.7.11",
"postal-mime": "^2.4.3",
"zod": "^3.25.64"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250613.0",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-json": "^6.0.2",
"@tanstack/table-core": "^8.21.3",
"chart.js": "^4.5.1",
"codemirror": "^6.0.2",
"playwright": "^1.60.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vitest": "^3.2.3",
"wrangler": "^4.20.5"
}
}