-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@calimania/ehr",
"version": "0.1.0",
"description": "EHR interface for Medplum",
"homepage": "https://ehr.calimania.org/",
"bugs": {
"url": "https://github.com/medplum/medplum/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medplum/medplum.git",
"directory": "packages/app"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Club Calima <[email protected]>",
"type": "module",
"files": [
".env.defaults",
"dist"
],
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@medplum/eslint-config"
],
"root": true
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"build": "npm run clean && tsc && vite build",
"clean": "rimraf dist",
"dev": "vite",
"source-map-explorer": "source-map-explorer dist/**/*.js --gzip",
"test": "jest"
},
"browserslist": [
"last 1 Chrome versions"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@mantine/core": "7.11.2",
"@mantine/dropzone": "7.11.2",
"@mantine/hooks": "7.11.2",
"@mantine/notifications": "7.11.2",
"@medplum/core": "^3.2.4",
"@medplum/definitions": "3.2.4",
"@medplum/fhirtypes": "3.2.4",
"@medplum/mock": "3.2.4",
"@medplum/react": "3.2.4",
"@tabler/icons-react": "3.11.0",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.3.1",
"babel-jest": "^29.7.0",
"babel-preset-vite": "^1.1.3",
"cross-env": "^7.0.3",
"formidable": "^3.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.1",
"postcss": "8.4.40",
"postcss-preset-mantine": "1.17.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.26.0",
"rfc6902": "5.1.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vite": "5.3.5"
},
"engines": {
"node": ">=18.0.0"
}
}