-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
121 lines (121 loc) · 3.85 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@openmrs/esm-billing-app",
"version": "1.0.0",
"description": "O3 frontend module for handling billing concerns in healthcare settings",
"browser": "dist/openmrs-esm-billing-app.js",
"main": "src/index.ts",
"source": true,
"license": "MPL-2.0",
"homepage": "https://github.com/openmrs/openmrs-esm-billing-app#readme",
"scripts": {
"start": "openmrs develop",
"analyze": "webpack --mode=production --env.analyze=true",
"build": "webpack --mode production",
"coverage": "yarn test --coverage",
"debug": "npm run serve",
"extract-translations": "i18next 'src/**/*.component.tsx' 'src/index.ts' --config ./i18next-parser.config.js",
"lint": "eslint src --ext ts,tsx --max-warnings=0",
"postinstall": "husky install",
"prettier": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx,css,scss}\" \"e2e/**/*.ts\"",
"serve": "webpack serve --mode=development",
"test-e2e": "playwright test",
"test": "cross-env TZ=UTC jest --config jest.config.js --verbose false --passWithNoTests",
"test:watch": "cross-env TZ=UTC jest --watch --config jest.config.js",
"typescript": "tsc",
"verify": "turbo lint && turbo typescript && turbo test --color --concurrency=5"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-billing-app#readme"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-billing-app/issues"
},
"dependencies": {
"@carbon/react": "^1.48.1",
"@hookform/resolvers": "^3.3.4",
"classnames": "^2.5.1",
"fuzzy": "^0.1.3",
"lodash-es": "^4.17.21",
"react-hook-form": "^7.49.3",
"react-to-print": "^2.14.15",
"zod": "^3.22.4"
},
"peerDependencies": {
"@openmrs/esm-framework": "5.x",
"@openmrs/esm-patient-common-lib": "7.x",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x",
"swr": "2.x"
},
"devDependencies": {
"@openmrs/esm-framework": "next",
"@openmrs/esm-patient-common-lib": "next",
"@playwright/test": "^1.49.0",
"@swc/cli": "^0.3.2",
"@swc/core": "^1.3.106",
"@swc/jest": "^0.2.31",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-preset-minify": "^0.5.2",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.9.1",
"d3-selection": "^3.0.0",
"dayjs": "^1.11.10",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.0.6",
"i18next": "^23.7.20",
"i18next-parser": "^8.12.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"openmrs": "next",
"pinst": "^3.0.0",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.1",
"react-router-dom": "^6.21.3",
"rxjs": "^6.6.7",
"sass": "^1.70.0",
"swc-loader": "^0.2.3",
"swr": "^2.2.4",
"turbo": "^2.3.3",
"typescript": "^4.9.5",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"packageManager": "yarn@4.5.3"
}