-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (104 loc) · 3.06 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
102
103
104
105
{
"name": "@openmrs/esm-case-report-app",
"version": "3.0.0",
"license": "MPL-2.0",
"description": "A microfrontend template OpenMRS",
"browser": "dist/openmrs-esm-case-report-app.js",
"main": "src/index.ts",
"source": true,
"scripts": {
"start": "openmrs develop",
"serve": "webpack serve --mode=development",
"build": "webpack --mode production",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src --ext js,jsx,ts,tsx",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"typescript": "tsc",
"test": "jest --config jest.config.json",
"verify": "concurrently 'yarn:lint' 'yarn:test' 'yarn:typescript'",
"coverage": "yarn test -- --coverage",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn verify"
}
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs",
"microfrontends"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-case-report-app.git"
},
"homepage": "https://github.com/openmrs/openmrs-esm-case-report-app#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-case-report-app/issues"
},
"dependencies": {
"@carbon/icons-react": "^10.49.0",
"carbon-components-react": "^7.56.0",
"lodash-es": "^4.17.15",
"moment": "^2.29.3"
},
"peerDependencies": {
"@openmrs/esm-framework": "3.x",
"carbon-components": "^10.19.0",
"carbon-icons": "^7.0.7",
"dayjs": "^1.8.16",
"react": "^16.9.0",
"react-i18next": "^11.3.4",
"react-router-dom": "5.x",
"rxjs": "6.x"
},
"devDependencies": {
"@openmrs/esm-framework": "3.4.1-pre.189",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.203",
"@swc/jest": "^0.2.21",
"@testing-library/dom": "^7.20.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^10.4.3",
"@testing-library/user-event": "^12.0.11",
"@types/carbon-components-react": "^7.36.1",
"@types/carbon__icons-react": "^10.31.0",
"@types/jest": "^26.0.23",
"@types/react": "^16.13.1",
"@types/react-dom": "^16.9.0",
"@types/react-router": "^5.1.14",
"@types/react-router-dom": "^5.1.7",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/parser": "^5.28.0",
"concurrently": "^6.2.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.4",
"jest-cli": "^27.0.4",
"openmrs": "3.4.1-pre.189",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"react": "^16.13.1",
"react-dom": "^16.14.0",
"react-i18next": "^11.7.0",
"react-router-dom": "^5.2.0",
"rxjs": "^6.5.4",
"swc-loader": "^0.2.3",
"typescript": "^4.3.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"resolutions": {
"**/@types/react": "^16.13.1"
}
}