forked from UCSF-IGHS/openmrs-ohri-form-engine-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.18 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
{
"name": "@ohri/openmrs-ohri-form-engine-lib",
"version": "1.0.1",
"description": "A React based Forms Engine for OpenMRS 3.X",
"browser": "dist/openmrs-ohri-form-engine-lib.js",
"main": "src/index.ts",
"license": "MIT",
"homepage": "https://github.com/UCSF-IGHS/openmrs-ohri-form-engine-lib#readme",
"scripts": {
"lint": "eslint src --ext tsx --fix",
"verify": "turbo run lint && turbo run typescript && yarn run test",
"prettier": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx}\"",
"typescript": "tsc",
"test": "jest --config ./jest.config.js --passWithNoTests",
"build": "webpack --mode production"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently 'npm:verify' 'npm:prettier'"
}
},
"dependencies": {
"ace-builds": "^1.4.12",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"formik": "^2.2.6",
"jest-coverage-badges": "^1.0.0",
"lodash-es": "^4.17.15",
"moment": "^2.29.1",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-error-boundary": "3.1.4",
"react-markdown": "^7.1.0",
"react-scroll": "^1.8.2",
"react-test-renderer": "^16.9.0",
"react-waypoint": "^10.3.0",
"semver": "^7.3.5",
"systemjs-webpack-interop": "^2.3.2",
"yup": "^0.29.1"
},
"peerDependencies": {
"@carbon/react": "1.x",
"@openmrs/esm-framework": "4.x",
"dayjs": "^1.8.16",
"react": "^18.2.0",
"react-i18next": "11.x",
"rxjs": "6.x"
},
"devDependencies": {
"@carbon/react": "^1.13.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": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.3.0",
"css-loader": "^6.6.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.3.0",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"husky": "^8.0.3",
"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",
"openmrs": "next",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^18.2.0",
"react-i18next": "^11.18.1",
"rxjs": "^6.6.3",
"swc-loader": "^0.2.3",
"turbo": "^1.8.5",
"typescript": "^4.0.3",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"resolutions": {
"@carbon/react": "1.13.0"
},
"packageManager": "[email protected]"
}