-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.75 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
{
"name": "smart-dicom-template",
"displayName": "SMART DICOM Algorithm Template",
"description": "Starter kit for building SMART on FHIR imaging algorithm apps. Clone, implement your algorithm in src/algorithm.ts, and deploy as a SMART app.",
"private": true,
"version": "0.3.15-beta.202608142040.36af3ff76",
"type": "module",
"scripts": {
"dev": "vite --port 5180",
"build": "tsc -b && vite build",
"typecheck": "tsc -b",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview --port 5180"
},
"dependencies": {
"@babelfhir-ts/dicomweb": "^0.1.3",
"@cornerstonejs/core": "^5.7.3",
"@cornerstonejs/dicom-image-loader": "^5.7.3",
"@fontsource-variable/geist": "^5.3.0",
"@proxy-smart/shared-ui": "npm:@max-health-inc/shared-ui@^0.9.1",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-slot": "^1.3.3",
"@tailwindcss/vite": "^4.3.3",
"@types/fhir": "^0.0.44",
"brandc": "^0.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hl7.fhir.uv.ips-generated": "./lib/hl7.fhir.uv.ips-generated.tgz",
"lucide-react": "^1.31.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react-swc": "^4.3.3",
"eslint": "^10.8.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.4",
"globals": "^17.10.0",
"shadcn": "^4.17.0",
"tw-animate-css": "^1.4.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1"
}
}