forked from medplum/medplum-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "medplum-task-demo",
"version": "3.2.26",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:bots && tsc && vite build",
"build:bots": "npm run clean && npm run lint && tsc --project tsconfig-bots.json && node --loader ts-node/esm src/scripts/deploy-bots.ts",
"clean": "rimraf dist",
"dev": "npm run build:bots && vite",
"lint": "eslint src/",
"preview": "vite preview",
"test": "vitest run"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@medplum/eslint-config"
]
},
"devDependencies": {
"@mantine/core": "7.15.1",
"@mantine/hooks": "7.15.1",
"@mantine/notifications": "7.15.1",
"@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-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.4",
"postcss": "8.4.49",
"postcss-preset-mantine": "1.17.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.28.0",
"rimraf": "5.0.9",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"vite": "6.0.3",
"vitest": "2.1.8"
}
}