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
106 lines (106 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.91 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
{
"name": "openmrs",
"version": "10.0.0",
"license": "MPL-2.0",
"main": "dist/index.js",
"bin": {
"openmrs": "./dist/cli.js",
"rspack": "./bin/rspack.cjs",
"webpack": "./bin/webpack.cjs"
},
"type": "module",
"types": "dist/index.d.ts",
"exports": {
"./default-rspack-config": {
"require": "./default-rspack-config.cjs",
"default": "./default-rspack-config.cjs"
},
"./default-webpack-config": {
"require": "./default-webpack-config.cjs",
"default": "./default-webpack-config.cjs"
},
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">= 20.11.0"
},
"scripts": {
"start": "node ./dist/cli.js",
"test": "cross-env TZ=UTC vitest run --passWithNoTests",
"test:watch": "cross-env TZ=UTC vitest watch",
"build": "rimraf dist && concurrently \"swc --strip-leading-paths src -d dist\" \"tsc --project tsconfig.build.json\"",
"lint": "eslint src --ext ts,tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-core.git"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-core/issues"
},
"keywords": [
"openmrs",
"microfrontends",
"cli",
"tool"
],
"homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
"dependencies": {
"@inquirer/prompts": "8.3.2",
"@openmrs/esm-app-shell": "workspace:*",
"@openmrs/rspack-config": "workspace:*",
"@openmrs/webpack-config": "workspace:*",
"@pnpm/npm-conf": "^3.0.2",
"@rspack/cli": "1.7.9",
"@rspack/core": "1.7.9",
"@rspack/dev-server": "1.1.5",
"@swc/core": "1.15.21",
"autoprefixer": "10.4.20",
"browserslist-config-openmrs": "^1.0.1",
"chalk": "5.6.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "5.2.7",
"ejs": "5.0.1",
"glob": "13.0.6",
"html-webpack-plugin": "5.6.6",
"html-webpack-tags-plugin": "3.0.2",
"lodash": "4.17.21",
"mini-css-extract-plugin": "2.9.1",
"node-watch": "0.7.4",
"npm-registry-fetch": "19.1.1",
"open": "11.0.0",
"pacote": "21.5.0",
"sass-embedded": "1.89.2",
"sass-loader": "16.0.5",
"semver": "^7.7.3",
"style-loader": "3.3.4",
"swc-loader": "0.2.7",
"tar": "7.5.13",
"typescript": "5.8.3",
"webpack": "5.105.3",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3",
"webpack-stats-plugin": "1.1.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@inquirer/testing": "^3.3.2",
"@swc/cli": "0.8.1",
"@types/express": "^4.11.1",
"@types/lodash": "^4.17.21",
"@types/node": "^20",
"@types/pacote": "^11.1.8",
"@types/react": "^18.3.21",
"@types/semver": "^7",
"@types/yargs": "^17.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"rimraf": "^6.1.3",
"vitest": "^4.1.2"
}
}