generated from openmrs/openmrs-esm-template-app
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
106 lines (106 loc) · 3.18 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
106
{
"name": "@openmrs/esm-dispensing-app",
"version": "1.6.2",
"license": "MPL-2.0",
"description": "Medication dispensing application",
"browser": "dist/openmrs-esm-dispensing-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",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch",
"typescript": "tsc",
"verify": "concurrently 'yarn:lint' 'yarn:test' 'yarn:typescript'",
"extract-translations": "i18next 'src/**/*.component.tsx' 'src/**/*.workspace.tsx' 'src/index.ts' --config ./i18next-parser.config.js",
"coverage": "yarn test --coverage",
"postinstall": "husky install"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs",
"microfrontends",
"medication",
"dispensing",
"pharmacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-dispensing.git"
},
"homepage": "https://github.com/openmrs/openmrs-esm-dispensing#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-dispensing/issues"
},
"dependencies": {
"@carbon/react": "1.12.0",
"classnames": "^2.5.1",
"lodash-es": "^4.17.21",
"react-to-print": "^2.14.13"
},
"peerDependencies": {
"@openmrs/esm-framework": "*",
"dayjs": "1.x",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x",
"swr": "2.x"
},
"devDependencies": {
"@openmrs/esm-framework": "next",
"@swc/core": "^1.7.14",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.1.7",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"concurrently": "^6.2.0",
"dayjs": "^1.11.13",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^6.0.0",
"i18next": "^21.10.0",
"i18next-parser": "^9.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-cli": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^15.2.9",
"openmrs": "next",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.7.0",
"react-router-dom": "^6.3.0",
"rxjs": "^6.6.7",
"swr": "^2.2.5",
"turbo": "^2.4.2",
"typescript": "^4.3.2",
"webpack": "^5.88.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"packageManager": "[email protected]"
}