-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.68 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.68 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@aehrc/smart-forms-app",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Typescript-based React web application implementing FHIR Structured Data Captured (SDC) specification",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && CI=false vite build",
"test": "TZ=Australia/Sydney jest --config ./jest.config.ts --coverage",
"test-715": "TZ=Australia/Sydney vitest run --config ./vitest.config.ts",
"test-715-headed": "TZ=Australia/Sydney VITEST_HEADED=1 vitest run --config ./vitest.config.ts",
"preview": "vite preview --port 4173",
"playwright": "npx playwright test",
"playwright-ui": "npx playwright test --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aehrc/smart-forms.git"
},
"author": "AEHRC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aehrc/smart-forms/issues"
},
"homepage": "https://github.com/aehrc/smart-forms#readme",
"dependencies": {
"@aehrc/sdc-assemble": "^2.0.2",
"@aehrc/sdc-populate": "^4.7.0",
"@aehrc/sdc-template-extract": "^1.0.15",
"@aehrc/smart-forms-renderer": "^1.3.1",
"@dnd-kit/core": "^6.3.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/material-icons": "^5.2.5",
"@fontsource/roboto": "^5.2.8",
"@microlink/react-json-view": "^1.27.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^7.1.1",
"@mui/lab": "^7.0.0-beta.13",
"@mui/material": "^7.1.1",
"@sentry/react": "^10.11.0",
"@sentry/tracing": "^7.120.4",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-table": "^8.21.3",
"allotment": "^1.20.4",
"date-fns": "^4.1.0",
"dayjs": "^1.11.18",
"fhir-sdc-helpers": "^0.1.0",
"fhirclient": "^2.6.3",
"he": "^1.2.0",
"html-react-parser": "4.2.10",
"lodash.clonedeep": "^4.5.0",
"material-ui-popup-state": "^5.3.3",
"moment": "^2.30.1",
"monaco-editor": "^0.54.0",
"nanoid": "^5.1.2",
"notistack": "^3.0.2",
"randomcolor": "^0.6.2",
"react": "^18.3.1",
"react-cookie": "^7.2.2",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-json-tree": "^0.20.0",
"react-markdown": "^10.0.1",
"react-router-dom": "6.11.2",
"react-spinners": "^0.17.0",
"react-syntax-highlighter": "^16.1.0",
"react-to-print": "^3.1.1",
"usehooks-ts": "^3.1.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@jest/globals": "^30.1.2",
"@playwright/test": "^1.56.1",
"@sentry/cli": "^2.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/fhir": "^0.0.41",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.14",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^22.15.30",
"@types/randomcolor": "^0.5.9",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-helmet": "^6.1.11",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^9.1.6",
"expect-type": "^1.2.2",
"jest": "^29.7.0",
"jsdom": "^29.0.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.2",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^3.2.4",
"@vitest/browser": "^3.2.4",
"yui-lint": "^0.2.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}