-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 KB
/
package.json
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
{
"name": "medplum-chart-demo",
"version": "3.2.28",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:bots && tsc && vite build",
"build:bots": "npm run clean && tsc --project tsconfig-bots.json && node --no-warnings esbuild-script.mjs && node --loader ts-node/esm src/scripts/deploy-bots.ts",
"clean": "rimraf dist",
"dev": "vite",
"lint": "eslint src/",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"@medplum/eslint-config"
]
},
"devDependencies": {
"@mantine/core": "7.15.3",
"@mantine/hooks": "7.15.3",
"@mantine/notifications": "7.15.3",
"@medplum/bot-layer": "3.2.28",
"@medplum/core": "3.2.28",
"@medplum/definitions": "3.2.28",
"@medplum/eslint-config": "3.2.28",
"@medplum/fhirtypes": "3.2.28",
"@medplum/mock": "3.2.28",
"@medplum/react": "3.2.28",
"@tabler/icons-react": "3.17.0",
"@types/node": "22.10.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.4",
"chart.js": "4.4.7",
"esbuild": "0.24.2",
"fast-glob": "3.3.3",
"postcss": "8.5.0",
"postcss-preset-mantine": "1.17.0",
"react": "18.2.0",
"react-chartjs-2": "5.3.0",
"react-dom": "18.2.0",
"react-router-dom": "6.28.0",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"vite": "6.0.7",
"vitest": "2.1.8"
}
}