-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.05 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
{
"name": "shc-web-verifier",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/node": "^16.11.1",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"axios": "^0.21.1",
"i18next": "^21.6.6",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-chained-backend": "^3.0.2",
"i18next-http-backend": "^1.3.1",
"i18next-resources-to-backend": "^1.0.0",
"js-base64": "^3.6.1",
"jsqr": "^1.4.0",
"node-jose": "^2.0.0",
"pako": "^2.0.3",
"qr-scanner": "^1.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-i18next": "^11.15.3",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"shc-web-verifier-locales": "file:./public/locales",
"typescript": "^4.4.4",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "BUILD_PATH='./www' react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d www",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --fix",
"prettier": "prettier --check \"**/*.{js,ts,tsx}\"",
"prettier-fix": "prettier --write \"**/*.{js,ts,tsx}\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cordova-android": "^10.1.1",
"cordova-browser": "^6.0.0",
"cordova-ios": "^6.2.0",
"cordova-plugin-iosrtc": "^8.0.1",
"cordova-plugin-splashscreen": "^6.0.1",
"cordova.plugins.diagnostic": "^6.1.1",
"cql-exec-fhir": "^2.0.2",
"cql-execution": "^2.4.1",
"cql-testing-harness": "^0.0.4",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"gh-pages": "^3.2.3",
"prettier": "^2.3.2",
"xml2js": "^0.4.23"
},
"resolutions": {
"//": "See https://github.com/facebook/create-react-app/issues/11773",
"react-error-overlay": "6.0.9"
},
"cordova": {
"platforms": [
"ios",
"android",
"browser"
],
"plugins": {
"cordova.plugins.diagnostic": {
"ANDROIDX_VERSION": "1.0.0",
"ANDROIDX_APPCOMPAT_VERSION": "1.3.1"
},
"cordova-plugin-iosrtc": {
"MANUAL_INIT_AUDIO_DEVICE": "FALSE"
},
"cordova-plugin-splashscreen": {}
}
}
}