forked from openmrs/openmrs-esm-form-engine-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.36 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
{
"name": "@openmrs/openmrs-form-engine-lib",
"version": "2.1.0",
"description": "React Form Engine for O3",
"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 run lint typescript test --concurrency=5",
"test": "jest --config ./jest.config.js --passWithNoTests --color",
"test:watch": "jest --config ./jest.config.js --watch --color",
"typescript": "tsc",
"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": {
"@carbon/react": ">1.47.0 <1.50.0",
"ace-builds": "^1.33.2",
"classnames": "^2.5.1",
"dayjs": "1.x",
"formik": "^2.4.6",
"lodash-es": "^4.17.21",
"react-error-boundary": "^4.0.13",
"react-markdown": "^7.1.2",
"react-waypoint": "^10.3.0",
"react-webcam": "^7.2.0",
"yup": "^1.4.0"
},
"peerDependencies": {
"@openmrs/esm-framework": "5.x",
"@openmrs/esm-patient-common-lib": "8.x",
"dayjs": "1.x",
"i18next": "23.x",
"react": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x",
"swr": "2.x"
},
"devDependencies": {
"@openmrs/esm-framework": "next",
"@openmrs/esm-patient-common-lib": "next",
"@swc/cli": "^0.1.65",
"@swc/core": "^1.5.7",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.2",
"@types/webpack-env": "^1.18.5",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.5.1",
"css-loader": "^6.11.0",
"dayjs": "^1.11.11",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react-hooks": "^4.6.2",
"fork-ts-checker-webpack-plugin": "^6.5.3",
"husky": "^8.0.3",
"i18next": "^23.11.4",
"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.6.0",
"lint-staged": "^15.2.2",
"openmrs": "next",
"prettier": "^2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^11.18.6",
"rxjs": "^6.6.7",
"sass": "^1.77.2",
"swc-loader": "^0.2.6",
"swr": "^2.2.5",
"turbo": "^2.0.6",
"typescript": "^4.9.5",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"packageManager": "yarn@4.2.2"
}