-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.18 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
{
"name": "tim-admin",
"version": "0.13.1",
"description": "Admin GUI for the Matrix.org server Synapse with additions for TIM",
"contributors": [
{
"name": "Awesome Technologies Innovationslabor GmbH"
},
{
"name": "akquinet GmbH",
"url": "https://akquinet.com"
}
],
"license": "Apache-2.0",
"bugs": "https://github.com/tim-ref/messenger-org-admin/issues",
"repository": "https://github.com/tim-ref/messenger-org-admin.git",
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^14.4.3",
"@types/history": "^5.0.0",
"@types/jest-expect-message": "^1.1.0",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.17.16",
"@types/react-router-dom": "^5.3.3",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest-expect-message": "^1.1.3",
"jest-extended": "^3.2.4",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.2.0",
"ra-test": "^3.15.0",
"start-server-and-test": "^2.0.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"fhir-kit-client": "^1.9.2",
"jose": "^4.14.1",
"lodash": "^4.17.21",
"papaparse": "^5.2.0",
"prop-types": "^15.7.2",
"ra-language-chinese": "^2.0.10",
"ra-language-german": "^3.13.4",
"react": "^17.0.0",
"react-admin": "^3.19.7",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.1",
"typescript": "<4.8.0"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "TSC_COMPILE_ON_ERROR=true react-scripts start",
"start:e2e": "BROWSER=none REACT_APP_VZD= react-scripts start",
"build": "react-scripts build",
"fix:other": "yarn prettier --write",
"fix:code": "yarn test:lint --fix",
"fix": "yarn fix:code && yarn fix:other",
"prettier": "prettier \"**/*.{ts,tsx,js,jsx,json,scss}\"",
"test:code": "CI=true react-scripts test",
"test:interactive": "react-scripts test",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"test:lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"test:style": "yarn prettier --list-different",
"e2e:install": "cd e2e && yarn install",
"e2e:run": "cd e2e && (ELECTRON_ENABLE_LOGGING=1 ELECTRON_EXTRA_LAUNCH_ARGS=--lang=en yarn cypress run --browser chrome)",
"e2e:e2e": "start-server-and-test start:e2e http://127.0.0.1:3000 e2e:run",
"e2e": "yarn e2e:install && yarn e2e:e2e",
"test": "yarn test:style && yarn test:lint && yarn test:code",
"eject": "react-scripts eject",
"prepare": "is-ci || husky install",
"fhir-gen": "ts-node src/data_providers/fhir/generateSpecialty.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "https://fhir-directory-ref.vzd.ti-dienste.de"
}