forked from UCSF-IGHS/openmrs-ohri-form-engine-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.09 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
{
"name": "openmrs-ohri-form-engine-lib",
"version": "0.1.6",
"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",
"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": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently 'npm:test' 'npm:typescript' 'npm:lint'"
}
},
"dependencies": {
"@carbon/icons-react": "^10.18.0",
"ace-builds": "^1.4.12",
"carbon-components-react": "^7.25.0",
"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-ace": "^9.4.4",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-markdown": "^7.1.0",
"react-scroll": "^1.8.2",
"react-test-renderer": "^16.9.0",
"react-waypoint": "^10.1.0",
"semver": "^7.3.5",
"systemjs-webpack-interop": "^2.3.2",
"yup": "^0.29.1",
"@openmrs/esm-framework": "next"
},
"peerDependencies": {
"@openmrs/esm-framework": "3.x",
"carbon-components": "^10.19.0",
"carbon-icons": "^7.0.7",
"dayjs": "^1.8.16",
"react": "^16.9.0",
"react-i18next": "^11.3.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.17.8",
"@openmrs/esm-framework": "^3.2.1-pre.1055",
"@openmrs/esm-patient-common-lib": "^3.1.1-pre.1346",
"@testing-library/dom": "^7.20.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^10.4.3",
"@testing-library/user-event": "^12.0.11",
"@types/jest": "^24.9.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.4",
"babel-preset-minify": "^0.5.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"openmrs": "^3.2.1-pre.1055",
"@types/webpack-env": "^1.15.1",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"clean-webpack-plugin": "^3.0.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.2.1",
"husky": "^3.0.4",
"concurrently": "^6.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"eslint": "^7.10.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-eslint": "^10.0.2",
"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",
"identity-obj-proxy": "^3.0.0"
}
}