forked from openmrs/openmrs-esm-form-engine-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.35 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
105
106
107
108
109
110
111
112
{
"name": "@openmrs/openmrs-form-engine-lib",
"version": "1.1.0",
"description": "A React based Forms Engine for OpenMRS 3.X",
"browser": "dist/openmrs-form-engine-lib.js",
"main": "src/index.ts",
"license": "MIT",
"homepage": "https://github.com/openmrs/openmrs-form-engine-lib#readme",
"scripts": {
"lint": "eslint src --ext .ts,.tsx --fix",
"verify": "turbo lint typescript test --concurrency=5",
"test": "jest --config ./jest.config.js --passWithNoTests",
"build": "webpack --mode production",
"coverage": "yarn test --coverage",
"analyze": "webpack --mode=production --env.analyze=true",
"prepare": "husky install",
"extract-translations": "i18next 'src/**/*.component.tsx' --config './tools/i18next-parser.config.js'"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"ace-builds": "^1.4.12",
"classnames": "^2.5.1",
"dayjs": "1.x",
"formik": "^2.2.6",
"lodash-es": "^4.17.15",
"react-error-boundary": "^4.0.11",
"react-markdown": "^7.1.0",
"react-waypoint": "^10.3.0",
"react-webcam": "^7.1.1",
"yup": "^0.29.1"
},
"peerDependencies": {
"@carbon/react": "1.x",
"@openmrs/esm-framework": "5.x",
"@openmrs/esm-patient-common-lib": "7.x",
"dayjs": "1.x",
"i18next": "23.x",
"react": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x",
"swr": "2.x"
},
"devDependencies": {
"@carbon/react": "^1.37.0",
"@openmrs/esm-framework": "next",
"@openmrs/esm-patient-common-lib": "next",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.38",
"@swc/jest": "^0.2.29",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.3",
"@types/react": "^18.2.22",
"@types/webpack-env": "^1.15.1",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.3.0",
"css-loader": "^6.6.0",
"dayjs": "^1.11.10",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"husky": "^8.0.0",
"i18next": "^23.11.2",
"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",
"jest-when": "^3.5.2",
"lint-staged": "^15.2.2",
"openmrs": "next",
"prettier": "^2.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.1",
"rxjs": "^6.6.3",
"sass": "^1.54.3",
"swc-loader": "^0.2.3",
"swr": "^2.2.4",
"turbo": "^1.13.2",
"typescript": "^4.0.3",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"packageManager": "yarn@4.1.1",
"resolutions": {
"@types/react": "18.2.22"
}
}