-
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.96 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.96 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": "sampledb",
"version": "1.1.0",
"private": true,
"description": "Specimen inventory and workflow system for research and clinical labs",
"scripts": {
"dev": "bun --env-file=.env --env-file=.env.local --filter '*' --parallel dev",
"dev:api": "bun --env-file=.env --env-file=.env.local --filter @sampledb/api dev",
"dev:web": "bun --env-file=.env --env-file=.env.local --filter @sampledb/web dev",
"dev:docs": "bun --env-file=.env --env-file=.env.local --filter @sampledb/docs dev",
"build": "bun --filter '*' build",
"build:api": "bun --filter @sampledb/api build",
"build:web": "bun --filter @sampledb/web build",
"build:docs": "bun --filter @sampledb/docs build",
"start": "bun --env-file=.env --env-file=.env.local --filter @sampledb/api start",
"lint": "bun --filter '*' lint",
"typecheck": "bun --filter '*' typecheck",
"ci:verify": "bun run typecheck && bun run build",
"setup:hooks": "bash .githooks/install.sh",
"test": "bun --env-file=.env --env-file=.env.local run --filter @sampledb/contract test && bun --env-file=.env --env-file=.env.local run --filter @sampledb/api test && bun --env-file=.env --env-file=.env.local run --filter @sampledb/web test",
"test:coverage": "bun --env-file=.env --env-file=.env.local run --filter @sampledb/api test:coverage && bun --env-file=.env --env-file=.env.local run --filter @sampledb/web test:coverage",
"test:e2e": "bun --filter @sampledb/e2e test",
"demo:seed": "bun --env-file=.env --env-file=.env.local --filter @sampledb/api demo:seed"
},
"keywords": [
"lims",
"laboratory",
"sample-management",
"malaria",
"research"
],
"author": "",
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
},
"workspaces": [
"packages/api",
"packages/contract",
"packages/web",
"packages/docs",
"packages/e2e"
],
"dependencies": {
"@hono/zod-openapi": "^1.3.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.14"
}
}