-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.12 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.12 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "medplum-health-card-demo",
"version": "1.0.0",
"description": "A monorepo for Medplum SMART Health Cards - includes bot backend and patient-facing app",
"main": "dist/index.js",
"private": true,
"workspaces": [
"src/app"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "npm run build:bots && npm run build:app",
"build:bots": "npm run clean:bots && tsc --project tsconfig-bots.json && node --no-warnings esbuild-script.mjs",
"build:app": "npm run build --workspace=src/app",
"deploy:operation": "npx ts-node --project tsconfig-deploy.json src/scripts/deploy-operation.ts",
"clean": "npm run clean:bots && npm run clean:app",
"clean:bots": "rimraf dist",
"clean:app": "npm run clean --workspace=src/app --if-present",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"dev:app": "npm run dev --workspace=src/app",
"preview:app": "npm run preview --workspace=src/app",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"lint:app": "npm run lint --workspace=src/app",
"lint:app:fix": "npm run lint:fix --workspace=src/app",
"format": "biome format --write src/",
"format:check": "biome format src/",
"check": "biome check src/",
"check:fix": "biome check --write src/"
},
"keywords": [
"medplum",
"fhir",
"smart-health-cards",
"healthcare"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.8",
"@types/node": "^24.6.2",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@medplum/bot-layer": "^4.5.1",
"@medplum/core": "^4.5.1",
"@medplum/definitions": "^4.5.1",
"@medplum/fhirtypes": "^4.5.1",
"@medplum/mock": "^4.5.1",
"dotenv": "^17.2.3",
"esbuild": "^0.25.10",
"fast-glob": "^3.3.3",
"jose": "^6.1.0",
"kill-the-clipboard": "^1.0.2"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}