-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.95 KB
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
{
"name": "fhir-sdc-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"prepare": "husky install",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"validate": "npm-run-all --parallel type-check lint build"
},
"dependencies": {
"@aehrc/smart-forms-renderer": "^0.45.1",
"@headlessui/react": "^2.2.4",
"@tanstack/react-query": "^4.39.2",
"@types/lodash": "^4.17.17",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.3"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@medplum/fhirtypes": "^4.1.6",
"@tailwindcss/postcss": "^4.1.10",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/react-modal": "^3.16.3",
"@types/testing-library__react": "^10.0.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"globals": "^13.24.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.5",
"prettier": "^3.2.5",
"tailwindcss": "^4.1.10",
"typescript": "~5.3.3",
"typescript-eslint": "^7.0.1",
"vite": "^5.1.3",
"vitest": "^3.2.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}