-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 3 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-module-management-app",
"version": "4.0.0",
"license": "MPL-2.0",
"description": "A microfrontend module-management OpenMRS",
"browser": "dist/openmrs-esm-module-management-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.js",
"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-module-management-app.git"
},
"homepage": "https://github.com/openmrs/openmrs-esm-module-management-app#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-module-management-app/issues"
},
"dependencies": {
"swr": "^1.3.0"
},
"peerDependencies": {
"@carbon/react": "^1.16.0",
"@openmrs/esm-framework": "*",
"dayjs": "1.x",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x"
},
"devDependencies": {
"@carbon/react": "^1.16.0",
"@openmrs/esm-framework": "next",
"@openmrs/esm-styleguide": "next",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.14",
"@swc/jest": "^0.2.23",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-router": "^5.1.19",
"@types/react-router-dom": "^5.3.3",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"concurrently": "^7.5.0",
"css-loader": "^6.7.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"openmrs": "next",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.7.0",
"react-router-dom": "^6.4.3",
"rxjs": "^6.5.4",
"swc-loader": "^0.2.3",
"systemjs-webpack-interop": "^2.3.7",
"typescript": "^4.3.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"packageManager": "yarn@3.2.4"
}