forked from openmrs/openmrs-esm-admin-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "@openmrs/admin-tools",
"version": "4.0.4",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "openmrs develop",
"start-all": "openmrs develop --sources 'packages/esm-*-app/'",
"ci:publish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-admin-tools npm publish --access public --tag latest",
"ci:prepublish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-admin-tools npm publish --access public --tag next",
"lint": "cross-env eslint src --ext tsx,ts --fix --max-warnings=0",
"release": "yarn workspaces foreach --all --topological version",
"verify": "turbo lint typescript test",
"postinstall": "husky install",
"test-e2e": "playwright test",
"coverage": "yarn test --coverage",
"extract-translations": "turbo extract-translations"
},
"devDependencies": {
"@openmrs/esm-framework": "next",
"@playwright/test": "^1.46.1",
"@swc/cli": "^0.1.65",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@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/jest": "^29.5.12",
"@types/jsdom": "20.0.1",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"i18next": "^23.10.0",
"i18next-parser": "^8.13.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.2",
"openmrs": "next",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.5",
"react-router-dom": "^6.22.2",
"rxjs": "^6.6.7",
"sass": "^1.71.1",
"swc-loader": "^0.2.6",
"turbo": "^2.0.14",
"typescript": "^4.9.5",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"packageManager": "[email protected]"
}