-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.77 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.77 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
{
"name": "@ugandaemr/esm-patient-queues-app",
"version": "1.0.3",
"license": "MPL-2.0",
"description": "Patient queues microfrontend for UgandaEMR",
"browser": "dist/esm-patient-queues-app.js",
"main": "src/index.ts",
"source": true,
"files": [
"*"
],
"scripts": {
"start": "openmrs develop",
"serve": "webpack serve --mode=development",
"debug": "npm run serve",
"build": "webpack --mode production",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src --ext tsx,ts --fix --max-warnings=0",
"verify": "turbo run lint && turbo run typescript",
"prettier": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx,css,scss}\"",
"test": "cross-env TZ=UTC jest --config jest.config.json --verbose false --passWithNoTests",
"typescript": "tsc",
"extract-translations": "i18next 'src/**/*.component.tsx' --config ../../tools/i18next-parser.config.js",
"prepack": "cp src/routes.json routes.json",
"postpack": "rm -f routes.json"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs",
"micro-frontends",
"ugandaEMR",
"patient queues"
],
"repository": {
"type": "git",
"url": "git+https://github.com/METS-Programme/esm-ugandaemr-core.git"
},
"homepage": "https://github.com/METS-Programme/esm-ugandaemr-core#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/METS-Programme/esm-ugandaemr-core/issues"
},
"dependencies": {
"@carbon/react": "^1.92.1",
"@hookform/resolvers": "^4.0.0",
"dayjs": "^1.11.6",
"lodash-es": "^4.17.15",
"qrcode.react": "^3.1.0",
"react-full-screen": "^1.1.1",
"react-to-print": "^2.14.13",
"react-tooltip": "^5.30.0",
"swr": "^2.1.1",
"zod": "^3.24.2"
},
"peerDependencies": {
"@openmrs/esm-framework": "9.x",
"@openmrs/esm-patient-common-lib": "12.x",
"react": "18.x",
"react-i18next": "11.x",
"react-router-dom": "6.x"
},
"devDependencies": {
"@openmrs/esm-framework": "next",
"@openmrs/esm-patient-common-lib": "next",
"@openmrs/esm-styleguide": "next",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.6",
"@swc/jest": "^0.2.23",
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.8",
"@types/lodash-es": "^4.17.3",
"@types/react": "^18.3.21",
"@types/react-dom": "^18.3.1",
"@types/testing-library__jest-dom": "^5.14.1",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^7.16.0",
"husky": "^8.0.3",
"i18next": "^25.8.18",
"i18next-parser": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"install-peers": "^1.0.4",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"openmrs": "next",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.71.2",
"react-i18next": "^11.18.6",
"react-router-dom": "^6.14.1",
"rxjs": "^6.6.7",
"sass": "^1.54.3",
"semver": "^7.6.0",
"swc-loader": "^0.2.3",
"systemjs-webpack-interop": "^2.3.7",
"turbo": "^2.5.2",
"typescript": "^5.0.2",
"webpack-bundle-analyzer": "^4.4.0"
},
"packageManager": "yarn@4.9.2"
}