-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
132 lines (132 loc) · 4.17 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
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
126
127
128
129
130
131
132
{
"author": "KBV",
"name": "@kbv/mioviewer",
"version": "1.8.1",
"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": "[email protected]"
},
"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": "set \"CI=false\" && 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",
"\\.(css|scss|less)$": "<rootDir>/src/@types/EmptyModule"
},
"transform": {
"\\.tsx?$": "ts-jest",
"\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!@ionic|@stencil)/"
]
},
"overrides": {
"react-json-view": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
},
"dependencies": {
"@ionic/react": "5.9.2",
"@ionic/react-router": "5.9.2",
"@kbv/mioparser": "^1.8.0",
"buffer": "^6.0.3",
"comlink": "^4.3.1",
"dompurify": "^2.4.3",
"lottie-web": "^5.10.1",
"moment": "^2.29.4",
"pdfmake": "^0.2.7",
"react": "^18.2.0",
"react-animate-height": "^3.1.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-fitty": "^1.0.1",
"react-json-view": "^1.21.3",
"react-redux": "^7.2.9",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-scripts": "^5.0.1",
"swiper": "^8.4.5"
},
"devDependencies": {
"@kbv/miotestdata": "^1.8.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/dompurify": "^2.4.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.11",
"@types/pdfmake": "^0.2.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-redux": "^7.1.25",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-jest": "^27.5.1",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.7.0-next-17e2a15be-20220808",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"jest-watch-typeahead": "^0.6.5",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"ts-jest": "^27.1.5",
"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"
]
}
}