-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
105 lines (105 loc) · 3.04 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/esm-cohort-builder-app",
"version": "4.0.0",
"license": "MPL-2.0",
"description": "A microfrontend for OpenMRS cohorts",
"browser": "dist/openmrs-esm-cohort-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",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"typescript": "tsc",
"test": "jest --config jest.config.js --verbose",
"test-e2e": "playwright test",
"verify": "concurrently 'yarn:lint' 'yarn:test' 'yarn:typescript'",
"coverage": "yarn test -- --coverage",
"prepare": "husky install"
},
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn verify"
}
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs",
"microfrontends"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-cohortbuilder.git"
},
"homepage": "https://github.com/openmrs/openmrs-esm-cohortbuilder#readme",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-cohortbuilder/issues"
},
"peerDependencies": {
"@openmrs/esm-framework": "*",
"react": "18.x",
"react-dom": "18.x",
"react-i18next": "11.x"
},
"devDependencies": {
"@carbon/react": "1.21.0",
"@openmrs/esm-framework": "next",
"@openmrs/esm-patient-common-lib": "next",
"@openmrs/esm-styleguide": "next",
"@playwright/test": "1.44.0",
"@swc/cli": "^0.1.61",
"@swc/core": "^1.3.34",
"@swc/jest": "^0.2.24",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"concurrently": "^7.6.0",
"css-loader": "^6.7.3",
"dayjs": "^1.11.7",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.2",
"jest-cli": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"openmrs": "next",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.5",
"swc-loader": "^0.2.3",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"packageManager": "yarn@4.2.2",
"dependencies": {
"classnames": "^2.3.2",
"dotenv": "^16.3.1"
}
}