forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "@openmrs/esm-framework",
"version": "5.3.2",
"license": "MPL-2.0",
"browser": "dist/openmrs-esm-framework.js",
"main": "src/index.ts",
"source": true,
"scripts": {
"document": "../../../document.sh esm-framework",
"test": "cross-env TZ=UTC jest --config jest.config.js --verbose false --passWithNoTests --color",
"test:watch": "cross-env TZ=UTC jest --watch --config jest.config.js --color",
"build": "webpack --mode=production",
"build:development": "webpack --mode development",
"analyze": "webpack --mode=production --env analyze=true",
"typescript": "tsc",
"lint": "eslint src --ext ts,tsx"
},
"keywords": [
"openmrs",
"framework",
"frontend",
"ui",
"microfrontends"
],
"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": {
"@openmrs/esm-api": "workspace:*",
"@openmrs/esm-config": "workspace:*",
"@openmrs/esm-dynamic-loading": "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-offline": "workspace:*",
"@openmrs/esm-react-utils": "workspace:*",
"@openmrs/esm-routes": "workspace:*",
"@openmrs/esm-state": "workspace:*",
"@openmrs/esm-styleguide": "workspace:*",
"@openmrs/esm-utils": "workspace:*",
"dayjs": "^1.10.7"
},
"peerDependencies": {
"dayjs": "1.x",
"i18next": "19.x",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x",
"single-spa": "5.x",
"swr": "2.x"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack": "^5.88.0"
}
}