forked from kassenaerztliche-bundesvereinigung/MIOViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.92 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.92 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
117
118
119
120
121
122
123
124
125
{
"author": "KBV",
"name": "@kbv/mioviewer",
"homepage": "./",
"version": "1.6.0",
"license": "LGPL-3.0",
"description": "MIO Viewer zur Darstellung von MIOs in einem Webbrowser",
"repository": "github:kassenaerztliche-bundesvereinigung/mioviewer",
"bugs": {
"url": "https://github.com/kassenaerztliche-bundesvereinigung/mioviewer/issues",
"email": "support.mio@kbv.de"
},
"keywords": [
"kbv",
"mio",
"viewer",
"fhir"
],
"scripts": {
"test": "react-scripts test --all --verbose --watchAll=false",
"test:watch": "react-scripts test --all --verbose",
"test:coverage": "react-scripts test --all --verbose --coverage --watchAll=false --testResultsProcessor",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache --verbose",
"lint": "eslint src/**/*.{js,ts,tsx}",
"prettier": "prettier --write .",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/index.ts",
"!src/**/*.test.{ts,tsx}",
"!src/index.tsx",
"!src/serviceWorker.ts"
],
"coverageThreshold": {
"global": {
"branches": 10,
"functions": 10,
"lines": 10,
"statements": 10
}
},
"coverageReporters": [
"lcov",
"text"
],
"moduleNameMapper": {
"^worker-loader!.+$": "<rootDir>/src/@types/EmptyModule"
},
"transform": {
"\\.tsx?$": "ts-jest",
"\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!@ionic|@stencil)/"
]
},
"dependencies": {
"@ionic/react": "5.9.2",
"@ionic/react-router": "5.9.2",
"@kbv/mioparser": "^1.6.0",
"comlink": "^4.3.1",
"dompurify": "^2.2.9",
"lottie-web": "^5.7.11",
"moment": "^2.29.1",
"pdfmake": "^0.1.71",
"react": "^17.0.2",
"react-animate-height": "^2.0.23",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-fitty": "^1.0.1",
"react-json-view": "^1.21.3",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"swiper": "^6.8.4"
},
"devDependencies": {
"@kbv/miotestdata": "^1.6.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^10.4.8",
"@types/dompurify": "^2.2.2",
"@types/jest": "^25.2.1",
"@types/node": "^16.11.12",
"@types/pdfmake": "^0.1.19",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.20",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.0.0",
"babel-jest": "^26.6.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "26.6.0",
"jest-canvas-mock": "^2.3.1",
"jest-watch-typeahead": "^0.6.5",
"node-sass": "^6.0.0",
"prettier": "^2.3.2",
"react-hot-loader": "^4.13.0",
"ts-jest": "^26.0.0",
"typesafe-actions": "^5.1.0",
"typescript": "^3.9.10",
"worker-loader": "^3.0.8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}