-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
87 lines (87 loc) · 2.83 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
{
"name": "@openmrs/esm-patient-chart",
"private": true,
"version": "8.2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "openmrs develop --sources packages/esm-patient-chart-app/",
"ci:publish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-patient-chart npm publish --access public --tag latest",
"ci:prepublish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-patient-chart npm publish --access public --tag next",
"ci:bump-form-engine-lib": "yarn up @openmrs/esm-form-engine-lib@next",
"release": "yarn workspaces foreach --all --topological version",
"verify": "turbo run lint typescript test --color --concurrency=5",
"postinstall": "husky install",
"test-e2e": "playwright test"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"classnames": "^2.3.2",
"react-barcode": "^1.5.3",
"react-hook-form": "^7.46.2",
"react-to-print": "^2.14.13",
"zod": "^3.22.2"
},
"devDependencies": {
"@openmrs/esm-framework": "next",
"@playwright/test": "1.48.2",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.89",
"@swc/jest": "^0.2.29",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/fhir": "^0.0.31",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.9",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"babel-preset-minify": "^0.5.2",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"css-loader": "^6.6.0",
"d3-selection": "^3.0.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-playwright": "^0.16.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^8.0.3",
"i18next": "^21.10.0",
"i18next-parser": "^6.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"openmrs": "next",
"prettier": "^3.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^11.18.6",
"react-router-dom": "^6.16.0",
"rxjs": "^7.8.0",
"sass": "^1.54.3",
"swc-loader": "^0.2.3",
"swr": "^2.2.4",
"turbo": "^2.2.3",
"typescript": "^4.0.3",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"resolutions": {
"sass": "^1.54.3"
},
"packageManager": "yarn@4.5.0"
}