-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathpackage.json
82 lines (82 loc) · 2.19 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
{
"name": "@openmrs/esm-react-utils",
"version": "6.0.3",
"license": "MPL-2.0",
"description": "React utilities for OpenMRS.",
"browser": "dist/openmrs-esm-react-utils.js",
"main": "src/index.ts",
"source": true,
"scripts": {
"test": "jest --passWithNoTests --color",
"build": "webpack --mode=production",
"build:development": "webpack --mode development",
"analyze": "webpack --mode=production --env analyze=true",
"lint": "eslint src"
},
"keywords": [
"openmrs",
"microfrontends",
"react",
"support",
"utilities"
],
"directories": {
"lib": "dist",
"src": "src"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-core.git"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-core/issues"
},
"homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"lodash-es": "^4.17.21",
"single-spa-react": "^6.0.2"
},
"peerDependencies": {
"@openmrs/esm-api": "6.x",
"@openmrs/esm-config": "6.x",
"@openmrs/esm-context": "6.x",
"@openmrs/esm-error-handling": "6.x",
"@openmrs/esm-extensions": "6.x",
"@openmrs/esm-feature-flags": "6.x",
"@openmrs/esm-globals": "6.x",
"@openmrs/esm-navigation": "6.x",
"@openmrs/esm-utils": "6.x",
"dayjs": "1.x",
"i18next": "21.x",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x",
"swr": "2.x"
},
"devDependencies": {
"@openmrs/esm-api": "workspace:*",
"@openmrs/esm-config": "workspace:*",
"@openmrs/esm-context": "workspace:*",
"@openmrs/esm-error-handling": "workspace:*",
"@openmrs/esm-extensions": "workspace:*",
"@openmrs/esm-feature-flags": "workspace:*",
"@openmrs/esm-globals": "workspace:*",
"@openmrs/esm-navigation": "workspace:*",
"@openmrs/esm-utils": "workspace:*",
"dayjs": "^1.10.8",
"i18next": "^21.10.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^11.18.6",
"rxjs": "^6.5.3",
"swr": "^2.2.5",
"webpack": "^5.88.0"
}
}