forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "openmrs",
"version": "3.4.0",
"license": "MPL-2.0",
"main": "dist/index.js",
"bin": {
"openmrs": "./dist/cli.js"
},
"types": "src/index.ts",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"start": "node ./dist/cli.js",
"test": "jest --passWithNoTests",
"build": "tsc",
"lint": "eslint src --ext ts,tsx",
"postversion": "yarn add @openmrs/esm-app-shell@$npm_package_version @openmrs/esm-webpack-config@$npm_package_version --exact"
},
"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": {
"@babel/preset-typescript": "^7.16.7",
"@openmrs/esm-app-shell": "^3.4.0",
"@openmrs/webpack-config": "^3.4.0",
"@types/react": "^16.9.46",
"@types/systemjs": "^6.1.0",
"autoprefixer": "^10.4.2",
"axios": "^0.21.1",
"browserslist-config-openmrs": "^1.0.1",
"copy-webpack-plugin": "^10.0.0",
"cssnano": "^5.0.16",
"ejs": "^2.6.2",
"glob": "^7.1.3",
"html-webpack-plugin": "^5.5.0",
"inquirer": "^7.3.3",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"rimraf": "^3.0.2",
"tar": "^6.0.5",
"ts-loader": "^9.2.6",
"typescript": "~4.5.2",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.4.1",
"yargs": "16.0.3"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/glob": "^7.1.1",
"@types/inquirer": "^6.5.0",
"@types/node": "12.12.2",
"@types/rimraf": "^2.0.2",
"@types/tar": "^4.0.3"
}
}