forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.77 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
{
"name": "@openmrs/esm-core",
"version": "5.8.1",
"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 --access public --tag next",
"ci:publish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-core npm publish --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": "cross-env TZ=UTC jest --config jest.config.json --verbose false --passWithNoTests --color",
"test-watch": "cross-env TZ=UTC jest --watch --config jest.config.json --color",
"test-e2e": "playwright test",
"coverage": "yarn test --coverage"
},
"devDependencies": {
"@playwright/test": "1.45.3",
"@swc/core": "^1.3.58",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react-dom": "^18.0.6",
"@types/systemjs": "^6.1.0",
"@types/webpack-env": "^1.16.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.20",
"classnames": "^2.3.2",
"cross-env": "7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.2",
"fake-indexeddb": "^4.0.2",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"husky": "^8.0.3",
"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": "^15.2.9",
"openmrs": "workspace:*",
"postcss": "^8.4.41",
"prettier": "^3.1.0",
"swc-loader": "^0.2.6",
"systemjs-webpack-interop": "^2.3.7",
"timezone-mock": "^1.2.2",
"turbo": "^2.2.3",
"typedoc": "^0.22.18",
"typedoc-plugin-file-tags": "^1.0.1",
"typedoc-plugin-markdown": "3.11.14",
"typedoc-plugin-no-inherit": "^1.3.1",
"typescript": "~4.6.4",
"webpack": "^5.88.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"resolutions": {
"@carbon/icons-react": "11.37.0",
"minipass": "3.3.5"
},
"packageManager": "yarn@4.4.0"
}