forked from medplum/medplum-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "medplum-task-demo",
"version": "5.1.1",
"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.15",
"@mantine/hooks": "8.3.15",
"@mantine/notifications": "8.3.15",
"@medplum/core": "5.1.1",
"@medplum/definitions": "5.1.1",
"@medplum/eslint-config": "5.1.1",
"@medplum/fhirtypes": "5.1.1",
"@medplum/mock": "5.1.1",
"@medplum/react": "5.1.1",
"@tabler/icons-react": "3.37.1",
"@types/node": "22.19.11",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"esbuild": "0.27.3",
"postcss": "8.5.6",
"postcss-preset-mantine": "1.18.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router": "7.13.0",
"rimraf": "6.1.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"packageManager": "npm@10.9.4",
"engines": {
"node": "^22.18.0 || >=24.2.0"
}
}