forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.35 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.35 KB
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
{
"name": "@openmrs/esm-core",
"version": "9.0.2",
"private": true,
"workspaces": [
"packages/apps/*",
"packages/framework/*",
"packages/shell/*",
"packages/tooling/*"
],
"scripts": {
"run:omrs": "openmrs",
"run:shell": "yarn workspace @openmrs/esm-app-shell watch",
"ci:publish-next": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-core npm publish --tolerate-republish --access public --tag next",
"ci:publish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-core npm publish --tolerate-republish --access public --tag latest",
"release": "yarn workspaces foreach --all --topological version",
"build": "turbo run build",
"build:apps": "turbo run build --filter='@openmrs/*-app'",
"setup": "yarn install && turbo run build",
"start": "openmrs develop",
"verify": "turbo run lint test typescript",
"postinstall": "husky install",
"test": "turbo run test",
"test-e2e": "./e2e/support/github/run-e2e-docker-env.sh",
"coverage": "turbo run test --coverage"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@swc/core": "1.15.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.21",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.16.4",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^7.1.1",
"fake-indexeddb": "^4.0.2",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"husky": "^8.0.3",
"i18next-parser": "^9.3.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^15.2.9",
"openmrs": "workspace:*",
"prettier": "^3.1.0",
"swc-loader": "0.2.7",
"timezone-mock": "^1.2.2",
"turbo": "^2.5.2",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"packageManager": "yarn@4.10.3"
}