forked from medplum/medplum-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 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": "medplum-task-demo",
"version": "5.1.26",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:bots && tsc && vite build",
"build:bots": "npm run clean && tsc && node --no-warnings esbuild-script.mjs && tsx src/scripts/deploy-bots.ts",
"clean": "rimraf dist data/example/example-bots.json",
"dev": "npm run build:bots && vite",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"preview": "vite preview",
"test": "vitest run"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@mantine/core": "8.3.18",
"@mantine/hooks": "8.3.18",
"@mantine/notifications": "8.3.18",
"@mantine/spotlight": "8.3.18",
"@medplum/core": "5.1.26",
"@medplum/definitions": "5.1.26",
"@medplum/eslint-config": "5.1.26",
"@medplum/fhirtypes": "5.1.26",
"@medplum/mock": "5.1.26",
"@medplum/react": "5.1.26",
"@tabler/icons-react": "3.44.0",
"@types/node": "22.20.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"esbuild": "0.28.1",
"postcss": "8.5.15",
"postcss-preset-mantine": "1.18.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-router": "7.18.0",
"rimraf": "6.1.3",
"tsx": "4.22.4",
"typescript": "6.0.3",
"vite": "8.1.0",
"vitest": "4.1.9"
},
"packageManager": "npm@10.9.8",
"engines": {
"node": "^22.18.0 || >=24.2.0"
}
}