forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "@openmrs/esm-primary-navigation-app",
"version": "5.1.0",
"license": "MPL-2.0",
"description": "Main navbar microfrontend for the OpenMRS SPA",
"browser": "dist/openmrs-esm-primary-navigation-app.js",
"main": "src/index.ts",
"source": true,
"scripts": {
"start": "openmrs develop",
"serve": "webpack serve --mode=development",
"debug": "npm run serve",
"test": "jest --config jest.config.js --passWithNoTests",
"build": "webpack --mode=production",
"build:development": "webpack --mode=development",
"analyze": "webpack --mode=production --env analyze=true",
"typescript": "tsc",
"lint": "eslint src --ext ts,tsx",
"extract-translations": "i18next 'src/**/*.component.tsx'"
},
"keywords": [
"openmrs",
"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": {
"@carbon/react": "^1.12.0",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"@openmrs/esm-framework": "*",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x",
"react-router-dom": "6.x",
"rxjs": "6.x",
"single-spa": "5.x"
},
"devDependencies": {
"@openmrs/esm-framework": "^5.1.0",
"@openmrs/webpack-config": "^5.1.0",
"jest": "^28.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^11.16.9",
"react-router-dom": "^6.3.0",
"rxjs": "^6.5.3",
"webpack": "^5.88.0"
}
}