-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
120 lines (120 loc) · 3.66 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
113
114
115
116
117
118
119
120
{
"name": "@openmrs/esm-form-builder-app",
"version": "2.7.0",
"license": "MPL-2.0",
"description": "Form Builder for O3",
"browser": "dist/openmrs-esm-form-builder-app.js",
"main": "src/index.ts",
"source": true,
"scripts": {
"start": "openmrs develop",
"serve": "webpack serve --mode=development",
"build": "webpack --mode production",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src --ext js,jsx,ts,tsx --max-warnings=0",
"typescript": "tsc",
"test": "jest --config jest.config.js --color",
"test:watch": "jest --config jest.config.js --watch --color",
"test-e2e": "playwright test",
"verify": "turbo run lint typescript coverage --color",
"coverage": "yarn test --coverage --passWithNoTests",
"postinstall": "husky install",
"extract-translations": "i18next 'src/**/*.component.tsx' 'src/**/*.modal.tsx' --config ./i18next-parser.config.js",
"ci:bump-form-engine-lib": "yarn up @openmrs/esm-form-engine-lib@next"
},
"files": [
"dist",
"src"
],
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs",
"microfrontends",
"form builder"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-form-builder.git"
},
"homepage": "https://github.com/openmrs/openmrs-esm-form-builder#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-form-builder/issues"
},
"dependencies": {
"@carbon/react": "^1.47.0",
"@openmrs/esm-form-engine-lib": "next",
"ajv": "^8.17.1",
"dotenv": "^16.4.5",
"file-loader": "^6.2.0",
"fuzzy": "^0.1.3",
"lodash-es": "^4.17.21",
"react-ace": "^11.0.1",
"sass": "^1.67.0"
},
"peerDependencies": {
"@openmrs/esm-framework": "*",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x",
"rxjs": "6.x"
},
"devDependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.2",
"@openmrs/esm-framework": "next",
"@openmrs/esm-patient-common-lib": "next",
"@openmrs/esm-styleguide": "next",
"@playwright/test": "1.45.3",
"@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.8",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^6.21.0",
"css-loader": "^6.11.0",
"eslint": "^8.57.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-playwright": "^0.16.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^8.0.3",
"i18next": "^23.16.4",
"i18next-parser": "^9.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"openmrs": "next",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-i18next": "^11.18.6",
"rxjs": "^6.6.7",
"swc-loader": "^0.2.6",
"turbo": "^2.2.3",
"typescript": "^4.9.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{css,scss,ts,tsx}": "prettier --write --list-different"
},
"packageManager": "[email protected]"
}