-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.67 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
57
58
59
{
"name": "medplum-scheduling-demo",
"version": "3.2.26",
"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",
"test:watch": "vitest watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"@medplum/eslint-config"
]
},
"devDependencies": {
"@mantine/core": "7.15.1",
"@mantine/hooks": "7.15.1",
"@mantine/notifications": "7.15.1",
"@medplum/bot-layer": "3.2.26",
"@medplum/core": "3.2.26",
"@medplum/definitions": "3.2.26",
"@medplum/eslint-config": "3.2.26",
"@medplum/fhirtypes": "3.2.26",
"@medplum/mock": "3.2.26",
"@medplum/react": "3.2.26",
"@tabler/icons-react": "3.17.0",
"@types/node": "22.10.2",
"@types/react": "18.3.12",
"@types/react-big-calendar": "^1.16.0",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.4",
"chart.js": "4.4.7",
"esbuild": "0.24.0",
"postcss": "8.4.49",
"postcss-preset-mantine": "1.17.0",
"react": "18.2.0",
"react-chartjs-2": "5.2.0",
"react-dom": "18.2.0",
"ts-node": "10.9.2",
"vitest": "2.1.8",
"dayjs": "1.11.13",
"react-big-calendar": "1.17.0",
"react-router-dom": "6.28.0",
"typescript": "5.7.2",
"vite": "6.0.3"
}
}