-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.78 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
{
"name": "@openmrs/esm-devtools-app",
"version": "10.0.0",
"license": "MPL-2.0",
"description": "Dev tools for frontend devs using OpenMRS",
"browser": "dist/openmrs-esm-devtools-app.js",
"main": "src/index.ts",
"source": true,
"scripts": {
"start": "openmrs develop",
"serve": "rspack serve --mode=development",
"debug": "npm run serve",
"test": "cross-env TZ=UTC vitest run --passWithNoTests",
"test:watch": "cross-env TZ=UTC vitest watch",
"coverage": "cross-env TZ=UTC vitest run --coverage --passWithNoTests",
"build": "rspack --mode=production",
"build:development": "rspack --mode=development",
"analyze": "rspack --mode=production --env analyze=true",
"typescript": "tsc",
"lint": "eslint src",
"extract-translations": "i18next 'src/**/*.tsx' --config='../../../tools/i18next-parser.config.js'"
},
"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"
},
"peerDependencies": {
"@carbon/icons-react": "11.x",
"@carbon/react": "1.x",
"@openmrs/esm-framework": "10.x",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "16.x",
"rxjs": "6.x"
},
"devDependencies": {
"cross-env": "^10.1.0",
"happy-dom": "^20.6.0",
"openmrs": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^16.0.0",
"vitest": "^4.1.2"
},
"dependencies": {
"@carbon/react": "^1.92.1",
"fuzzy": "^0.1.3"
}
}