forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.61 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.61 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
122
123
124
125
126
127
{
"name": "@openmrs/esm-styleguide",
"version": "9.0.2",
"license": "MPL-2.0",
"description": "The styleguide for OpenMRS SPA",
"module": "dist/internal.js",
"types": "dist/public.d.ts",
"exports": {
".": {
"types": "./src/internal.ts",
"default": "./dist/internal.js"
},
"./src/internal": {
"types": "./src/internal.ts",
"default": "./dist/internal.js"
},
"./src/public": {
"types": "./src/public.ts",
"default": "./dist/public.js"
},
"./src/index": {
"types": "./src/index.ts",
"default": "./dist/index.js"
},
"./styles": {
"sass": "./dist/_all.scss",
"default": "./dist/_all.scss"
},
"./src/vars": {
"sass": "./src/_vars.scss"
},
"./mock": {
"import": "./mock.tsx",
"require": "./mock-jest.tsx"
}
},
"source": true,
"scripts": {
"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": "rimraf dist && concurrently \"swc --strip-leading-paths --copy-files src -d dist && svgo -rf dist --quiet\" \"tsc --project tsconfig.build.json\"",
"build:development": "rimraf dist && concurrently \"swc --strip-leading-paths --copy-files src -d dist\" \"tsc --project tsconfig.build.json\"",
"lint": "eslint src"
},
"keywords": [
"openmrs",
"microfrontends",
"styleguide"
],
"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": {
"@carbon/charts": "^1.27.0",
"@carbon/react": "^1.92.1",
"@internationalized/date": "^3.8.0",
"d3": "^7.8.0",
"geopattern": "^1.2.3",
"lodash-es": "^4.17.21",
"react-aria-components": "^1.7.1"
},
"peerDependencies": {
"@openmrs/esm-api": "9.x",
"@openmrs/esm-config": "9.x",
"@openmrs/esm-emr-api": "9.x",
"@openmrs/esm-error-handling": "9.x",
"@openmrs/esm-extensions": "9.x",
"@openmrs/esm-globals": "9.x",
"@openmrs/esm-navigation": "9.x",
"@openmrs/esm-react-utils": "9.x",
"@openmrs/esm-state": "9.x",
"@openmrs/esm-translations": "9.x",
"@openmrs/esm-utils": "9.x",
"dayjs": "1.x",
"i18next": "25.x",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "16.x",
"rxjs": "6.x",
"swr": "2.x"
},
"devDependencies": {
"@openmrs/esm-api": "workspace:*",
"@openmrs/esm-config": "workspace:*",
"@openmrs/esm-emr-api": "workspace:*",
"@openmrs/esm-error-handling": "workspace:*",
"@openmrs/esm-extensions": "workspace:*",
"@openmrs/esm-globals": "workspace:*",
"@openmrs/esm-navigation": "workspace:*",
"@openmrs/esm-react-utils": "workspace:*",
"@openmrs/esm-state": "workspace:*",
"@openmrs/esm-translations": "workspace:*",
"@openmrs/esm-utils": "workspace:*",
"@swc/cli": "0.8.0",
"@swc/core": "1.15.18",
"@types/geopattern": "^1.2.9",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"happy-dom": "^20.6.0",
"i18next": "^25.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"rxjs": "^6.5.3",
"svgo": "^3.3.2",
"swr": "2.2.5",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
}
}