-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.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
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
92
93
94
95
96
97
98
99
100
{
"name": "rems-smart-on-fhir",
"version": "0.1.0",
"homepage": ".",
"type": "module",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.12",
"axios": "^1.7.4",
"buffer": "^6.0.3",
"cds-hooks": "^1.1.1",
"cql-exec-fhir": "^2.1.5",
"cql-execution": "^3.0.0",
"dotenv": "^16.4.5",
"env-var": "^7.3.1",
"Express": "^3.0.1",
"fhir": "^4.11.2",
"fhir-visualizers": "^0.0.6",
"fhirclient": "^2.5.2",
"flat": "^6.0.1",
"isomorphic-fetch": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.18.0",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "tsc && eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,jsx,ts,tsx}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,json,jsonc}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,jsonc}\""
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/express": "^4.17.21",
"@types/fhir": "^0.0.41",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"expo": "^49.0.5",
"gh-pages": "^6.0.0",
"jsdom": "^24.0.0",
"json5": "^2.2.3",
"nock": "^13.2.9",
"prettier": "^3.2.5",
"semver": "^5.7.2",
"tough-cookie": "^4.1.3",
"typescript": "^5.2.2",
"vite": "^5.4.6",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"word-wrap": "^1.2.4",
"xml2js": "^0.6.0"
}
}