forked from medplum/medplum-transfer-center-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.22 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
{
"name": "samplemed-regional-portal",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"clean": "rimraf dist",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix src",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest watch",
"bots:build": "npm run clean && npm run lint && tsc && node --no-warnings esbuild-script.mjs",
"bots:deploy": "node --loader ts-node/esm scripts/deploy-bots.ts",
"send-adt": "tsx scripts/send-adt-to-agent.cts 0.0.0.0:56000",
"hl7-server": "tsx scripts/hl7-server.cts"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"@medplum/eslint-config"
]
},
"dependencies": {
"@mantine/core": "8.3.9",
"@mantine/hooks": "8.3.9",
"@mantine/modals": "8.3.9",
"@mantine/notifications": "8.3.9",
"@medplum/core": "5.0.10",
"@medplum/definitions": "5.0.10",
"@medplum/eslint-config": "5.0.10",
"@medplum/fhirtypes": "5.0.10",
"@medplum/react": "5.0.10",
"@tabler/icons-react": "3.35.0",
"clsx": "2.1.1",
"mantine-datatable": "8.3.8",
"postcss": "8.5.6",
"postcss-preset-mantine": "1.18.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router-dom": "7.9.6",
"uuid": "11.1.0"
},
"devDependencies": {
"@medplum/bot-layer": "5.0.10",
"@medplum/cli": "5.0.10",
"@medplum/hl7": "5.0.10",
"@medplum/mock": "5.0.10",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "22.19.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.1",
"@vitest/coverage-v8": "4.0.14",
"@vitest/ui": "4.0.14",
"esbuild": "0.27.0",
"eslint": "9.39.1",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.24",
"jsdom": "27.2.0",
"prettier": "3.7.1",
"rimraf": "6.1.2",
"ts-node": "10.9.2",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vite": "7.2.4",
"vitest": "4.0.14"
}
}