forked from openmrs/openmrs-esm-form-engine-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.03 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
{
"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": "TIMING=1 eslint src --ext .ts,.tsx --fix",
"verify": "turbo lint typescript test",
"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"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"ace-builds": "^1.4.12",
"formik": "^2.2.6",
"jest-coverage-badges": "^1.0.0",
"lodash-es": "^4.17.15",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-error-boundary": "^4.0.11",
"react-markdown": "^7.1.0",
"react-scroll": "^1.8.2",
"react-test-renderer": "^16.9.0",
"react-waypoint": "^10.3.0",
"react-webcam": "^7.1.1",
"semver": "^7.3.5",
"yup": "^0.29.1"
},
"peerDependencies": {
"@carbon/react": "1.x",
"@openmrs/esm-framework": "5.x",
"react": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x"
},
"devDependencies": {
"@carbon/react": "^1.37.0",
"@openmrs/esm-framework": "next",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.38",
"@swc/jest": "^0.2.24",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.14",
"@types/webpack-env": "^1.15.1",
"@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",
"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": "^21.10.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.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.8.5",
"typescript": "^4.0.3",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"resolutions": {
"dayjs": "^1.10.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write --ignore-unknown --list-different"
]
},
"packageManager": "[email protected]"
}