forked from RiskyMH/EmailThing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.95 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.95 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
{
"name": "@emailthing/api",
"module": "src/main.ts",
"type": "module",
"private": true,
"scripts": {
"start": "NODE_ENV=production bun run --conditions=react-server --define process.isBun:true src/main.ts",
"dev": "bun --silent gen-routes && NODE_ENV=development bun run --hot --conditions=react-server --define process.isBun:true src/main.ts",
"gen-routes": "bun run --conditions=react-server src/gen-routes.ts",
"build:base": "bun --silent gen-routes && NODE_ENV=production bun build src/main.ts --target=bun --conditions=react-server --minify-syntax --sourcemap --define process.isBun:true --format=esm",
"build": "bun build:base --outdir=dist",
"build:standalone": "bun build:base --compile --outfile=dist/main --bytecode --production",
"postbuild": "(chmod +x dist/main.js || true)",
"start:built": "NODE_ENV=production bun run dist/main.js",
"typecheck": "tsc --noEmit",
"docker:build": "cd ../.. && docker build --build-arg GIT_SHA=$(git rev-parse --short HEAD) -t emailthing-api -f apps/api/Dockerfile .",
"docker:start": "cd ../.. && docker run -p 3000:3000 --env-file=apps/api/.env emailthing-api"
},
"dependencies": {
"@block65/webcrypto-web-push": "^1.0.2",
"@emailthing/const": "workspace:^",
"@emailthing/db": "workspace:^",
"@emailthing/web-pwa": "workspace:^",
"@github/webauthn-json": "^2.1.1",
"@paralleldrive/cuid2": "3.0.0",
"@riskymh/aws": "^0.0.9",
"@simplewebauthn/server": "13.2.2",
"drizzle-orm": "^1.0.0-rc.1",
"jsdom": "^29.0.1",
"mailauth": "^4.13.1",
"marked": "^17.0.5",
"mimetext": "^3.0.28",
"postal-mime": "^2.7.4",
"turndown": "^7.2.2",
"ua-parser-js": "^2.0.9",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/jsdom": "^28.0.1",
"@types/turndown": "^5.0.6",
"@types/ua-parser-js": "^0.7.39",
"drizzle-kit": "^1.0.0-rc.1"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}