forked from openmrs/openmrs-esm-patient-chart-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.29 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
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
{
"name": "@openmrs/esm-patient-chart-widgets",
"version": "1.0.0",
"description": "Patient dashboard widgets microfrontend for the OpenMRS SPA",
"main": "dist/openmrs-esm-patient-chart-widgets.js",
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0",
"start-https": "webpack-dev-server --https",
"build": "webpack --mode production",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src --ext tsx",
"prettier": "prettier",
"typescript": "tsc",
"prepublishOnly": "npm run build",
"test": "jest --config jest.config.json --verbose false",
"coverage": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-patient-chart-widgets.git"
},
"directories": {
"lib": "dist"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently npm:lint npm:typescript npm:coverage"
}
},
"types": "src/openmrs-esm-patient-chart-widgets.tsx",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@openmrs/esm-error-handling": "^1.1.0",
"@openmrs/react-root-decorator": "^3.2.0",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^9.5.0",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.4",
"@types/systemjs": "^6.1.0",
"@types/webpack-env": "^1.15.1",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-i18next-extract": "^0.5.0",
"browserslist-config-openmrs": "^1.0.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.1.0",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-ts-react-important-stuff": "^1.1.0",
"eslint-plugin-prettier": "^3.1.3",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-router": "^5.1.2",
"single-spa-react": "^2.13.0",
"style-loader": "^1.1.4",
"systemjs-webpack-interop": "^1.1.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@openmrs/esm-api": "^2.0.0",
"@openmrs/esm-module-config": "^1.3.1",
"@types/lodash-es": "^4.17.3",
"@types/react-router": "^5.1.5",
"dayjs": "^1.8.24",
"i18next": "^19.4.2",
"lodash-es": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-grid-gallery": "^0.5.5",
"react-i18next": "^11.3.4",
"react-router-dom": "^5.1.2",
"rxjs": "^6.5.5"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-patient-chart-widgets/issues"
},
"homepage": "https://github.com/openmrs/openmrs-esm-patient-chart-widgets#readme"
}