This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
110 lines (110 loc) · 3.48 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
{
"name": "@openmrs/esm-patient-registration-app",
"version": "0.3.0",
"description": "Patient registration microfrontend for the OpenMRS SPA",
"browser": "dist/openmrs-esm-patient-registration-app.js",
"main": "src/index.ts",
"license": "MPL-2.0",
"homepage": "https://github.com/openmrs/openmrs-esm-patient-registration#readme",
"scripts": {
"start": "openmrs develop",
"serve": "webpack-dev-server",
"debug": "npm run serve",
"build": "webpack --mode production",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src --ext tsx",
"prettier": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx}\"",
"typescript": "tsc",
"prepublishOnly": "npm run build",
"test": "jest --config jest.config.js --verbose false",
"coverage": "npm test -- --coverage",
"extract-translations": "i18next 'src/**/*.component.tsx' --config=i18next-parser.config.js"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"keywords": [
"openmrs"
],
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently 'npm:test' 'npm:typescript' 'npm:lint' 'npm:extract-translations'"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-patient-registration.git"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-patient-registration/issues"
},
"dependencies": {
"carbon-components-react": "^7.25.0",
"formik": "^2.1.5",
"lodash-es": "^4.17.15",
"yup": "^0.29.1"
},
"peerDependencies": {
"@openmrs/esm-framework": "3.x",
"carbon-components": "10.x",
"carbon-icons": "7.x",
"dayjs": "1.x",
"react": "16.x",
"react-i18next": "11.x"
},
"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.12.13",
"@carbon/themes": "^10.22.1",
"@openmrs/esm-framework": "next",
"@testing-library/dom": "^7.24.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^9.1.3",
"@testing-library/user-event": "^12.1.5",
"@types/carbon__icons-react": "^10.19.0",
"@types/carbon-components": "^10.23.0",
"@types/carbon-components-react": "^7.23.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.161",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.0",
"@types/react-router": "^5.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/webpack-env": "^1.15.1",
"@types/yup": "^0.29.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.9.0",
"carbon-components": "^10.35.0",
"concurrently": "^5.0.0",
"dayjs": "^1.8.16",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-ts-react-important-stuff": "^1.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.4",
"i18next": "^19.7.0",
"i18next-parser": "^3.11.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lodash": "^4.17.19",
"openmrs": "next",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.7.2",
"react-router": "^5.0.1",
"react-router-dom": "^5.2.0",
"sass": "^1.32.13",
"sass-loader": "^11.1.0",
"typescript": "^4.0.3"
}
}