-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.62 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
{
"name": "requests",
"version": "0.1.0",
"description": "A shared email inbox for communities — nothing falls through the cracks.",
"type": "module",
"private": true,
"scripts": {
"dev": "npm run build:client && tsx watch src/index.ts",
"build": "tsc && npm run build:client",
"build:client": "esbuild src/client/composer.tsx --bundle --minify --format=iife --target=es2020 --define:process.env.NODE_ENV=\\\"production\\\" --outfile=public/static/composer.js",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit && tsc -p tsconfig.client.json",
"test": "tsx --test test/*.test.ts"
},
"dependencies": {
"@fontsource/inter": "5.2.8",
"@hono/node-server": "^1.13.7",
"@libsql/client": "^0.14.0",
"@resvg/resvg-js": "2.6.2",
"@vercel/blob": "2.6.1",
"fflate": "0.8.3",
"hono": "^4.6.16",
"mailparser": "^3.7.2",
"sanitize-html": "2.13.0",
"satori": "0.26.0"
},
"devDependencies": {
"@floating-ui/dom": "1.8.0",
"@tiptap/core": "3.29.2",
"@tiptap/extension-document": "3.29.2",
"@tiptap/extension-hard-break": "3.29.2",
"@tiptap/extension-mention": "3.29.2",
"@tiptap/extension-paragraph": "3.29.2",
"@tiptap/extension-placeholder": "3.29.2",
"@tiptap/extension-text": "3.29.2",
"@tiptap/pm": "3.29.2",
"@tiptap/react": "3.29.2",
"@types/mailparser": "^3.4.5",
"@types/node": "^22.10.5",
"@types/react": "18.3.31",
"@types/react-dom": "18.3.7",
"@types/sanitize-html": "2.16.1",
"esbuild": "0.28.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}