-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "patient-browser-vite",
"private": true,
"version": "2.0.0",
"description": "A SMART-friendly browser for viewing and selecting FHIR patients for further use.",
"type": "module",
"author": "Vladimir Ignatov <[email protected]>",
"license": "Apache-2.0",
"contributors": [
"Dylan Phelan <[email protected]>"
],
"engines": {
"node": "18.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/patient-browser.git"
},
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"test:e2e": "npx nightwatch",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start-prod": "npx http-server ./dist"
},
"homepage": "https://patient-browser.smarthealthit.org/",
"dependencies": {
"@popperjs/core": "^2.11.8",
"http-server": "^14.1.1",
"jdenticon": "^3.2.0",
"jquery": "^3.7.1",
"json5": "^2.2.3",
"mixin-deep": "^2.0.1",
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router": "^6.16.0",
"react-router-dom": "^6.16.0",
"redux-actions": "^3.0.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2"
},
"devDependencies": {
"@miyaneee/rollup-plugin-json5": "^1.1.2",
"@types/jquery": "^3.5.20",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"chai": "^4.3.10",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^22.1.0",
"less": "^4.2.0",
"mocha": "^10.2.0",
"nightwatch": "^3.7.0",
"sass": "^1.68.0",
"typescript": "^5.0.2",
"vite": "^4.5.3",
"vitest": "^0.34.6"
}
}