forked from UCSF-IGHS/openmrs-esm-ohri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 4.27 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
{
"name": "@ohri/openmrs-esm-ohri",
"private": true,
"description": "OHRI MicroFrontend for OpenMRS SPA",
"workspaces": [
"packages/*"
],
"keywords": [
"openmrs"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "openmrs develop --backend https://ohri-dev.globalhealthapp.net --sources 'packages/esm-*-app/'",
"start:core": "openmrs develop --backend https://ohri-dev.globalhealthapp.net --sources packages/esm-ohri-core-app",
"start:covid": "openmrs develop --backend https://ohri-dev.globalhealthapp.net --sources packages/esm-covid-app",
"start:hiv": "openmrs develop --backend https://ohri-dev.globalhealthapp.net --sources packages/esm-hiv-app",
"start:cervical-cancer": "openmrs develop --backend https://ohri-dev.globalhealthapp.net --sources packages/esm-cervical-cancer-app",
"start:pmtct": "openmrs develop --backend https://ohri-namibia.globalhealthapp.net --sources packages/esm-ohri-pmtct-app",
"start:form-render": "openmrs develop --backend https://ohri-demo.globalhealthapp.net --sources packages/esm-form-render-app",
"start:namibia": "openmrs develop --backend https://ohri-namibia.globalhealthapp.net/ --sources 'packages/esm-*-app/'",
"prettier": "prettier --fix --config prettier.config.js --write \"packages/**/*.{ts,tsx}\"",
"prepare": "husky install",
"test": "jest --config jest.config.js --verbose false --passWithNoTests",
"test-watch": "jest --watch --config jest.config.js",
"verify": "turbo run lint && turbo run typescript && yarn run test",
"ci:prepublish": "lerna publish from-package --no-git-reset --yes --dist-tag next",
"ci:prerelease": "lerna version prerelease --no-git-tag-version --yes",
"ci:publish": "lerna publish from-package --yes",
"ci:release": "lerna version --no-git-tag-version",
"coverage": "yarn test --coverage",
"extract-translations": "lerna run extract-translations -- --config ../../tools/i18next-parser.config.js",
"ci:publish-next": "lerna publish from-package --no-git-reset --dist-tag next --yes",
"ci:publish-next-patch": "lerna version patch && lerna publish from-package --no-git-reset --dist-tag next --yes",
"release": "lerna version --no-git-tag-version",
"ci:bump-form-engine": "yarn up @ohri/openmrs-ohri-form-engine-lib@next"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently 'npm:verify'"
}
},
"devDependencies": {
"@openmrs/esm-framework": "4.1.1-pre.544",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.165",
"@swc/jest": "^0.2.20",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/webpack-env": "^1.16.4",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.18.0",
"browserslist-config-openmrs": "^1.0.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.3.0",
"css-loader": "^3.2.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.5.1",
"husky": "^8.0.0",
"i18next": "^19.7.0",
"i18next-parser": "^5.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.2",
"jest-cli": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lerna": "^4.0.0",
"lodash": "^4.17.21",
"openmrs": "4.1.1-pre.544",
"prettier": "^2.2.1",
"pretty-quick": "^2.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"rxjs": "^6.6.3",
"sass": "^1.54.3",
"swc-loader": "^0.1.15",
"swr": "^1.1.2",
"systemjs-webpack-interop": "^2.3.7",
"turbo": "^1.5.5",
"typescript": "^4.6.3",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"resolutions": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5"
},
"packageManager": "yarn@3.2.2"
}