-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.55 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
{
"name": "ethenengine-platform",
"version": "1.0.0",
"private": true,
"description": "Multi-tenant Business Platform Architecture v1 (Phase 1) powered by Bun & Hono",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun run build:server",
"build:server": "bun build src/index.ts --outdir ./dist/server --target bun --minify",
"build:all": "bun run typecheck && bun run build:server",
"build:analyze": "bun build src/index.ts --outdir ./dist/server --target bun --minify --metafile-md=./dist/bundle-analysis.md",
"profile:cpu": "bun --cpu-prof-md src/index.ts",
"start": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "bun test test/platform.test.ts",
"benchmark": "bun benchmarks/suites/production-benchmark.ts",
"benchmark:subsystem": "bun benchmarks/suites/subsystem-benchmark.ts",
"benchmark:concurrency": "bun benchmarks/suites/concurrency-benchmark.ts",
"benchmark:pure": "bun benchmarks/suites/pure-bun-benchmark.ts",
"benchmark:ddos": "bun benchmarks/suites/ddos-benchmark.ts",
"benchmark:fuzz": "bun benchmarks/suites/random-fuzz-benchmark.ts"
},
"dependencies": {
"@types/pg": "^8.23.1",
"drizzle-orm": "^0.45.2",
"hono": "^4.13.3",
"jsonwebtoken": "^9.0.3",
"pg": "^8.23.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/bun": "^1.4.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^26.2.0",
"bun-types": "latest",
"typescript": "^5.9.3"
}
}