-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
108 lines (108 loc) · 3.25 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
{
"name": "openmrs-module-ipd-frontend",
"version": "1.0.0",
"description": "React frontend for IPD module",
"main": "dist/index.js",
"author": "[email protected]",
"license": "MPL-2.0",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.4",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.5",
"@types/carbon-components-react": "^7.55.1",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "5.2.6",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"json-loader": "^0.5.7",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.7.6",
"moment": "^2.29.4",
"prettier": "^2.8.8",
"react": "16.14.0",
"react-dom": "16.14.0",
"resolve-url-loader": "^3.1.0",
"sass": "^1.63.4",
"sass-loader": "10.1.0",
"style-loader": "2.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@carbon/icons-react": "^10.18.0",
"@storybook/addon-styling": "0.3",
"@storybook/react": "6.5",
"@testing-library/react-hooks": "^8.0.1",
"axios": "1.7.4",
"axios-mock-adapter": "^1.21.5",
"bahmni-carbon-ui": "^0.1.9",
"carbon-components": "^10.19.0",
"carbon-components-react": "^7.25.0",
"carbon-icons": "^7.0.7",
"lodash": "^4.17.21",
"mockdate": "^3.0.5",
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-intl": "^3.3.2",
"react-scroll-sync-hook": "0.0.3",
"react-svg-loader": "^3.0.3",
"swiper": "^11.0.7"
},
"scripts": {
"preinstall": "git config core.hooksPath .git-hooks",
"start-storybook": "start-storybook -p 6006",
"test": " TZ=UTC jest --coverage",
"test:ci": "yarn test --ci",
"bump:patch": "yarn version --no-git-tag-version --patch",
"bump:minor": "yarn version --no-git-tag-version --minor",
"bump:major": "yarn version --no-git-tag-version --major",
"lint": "eslint src/**/*.{js,jsx}",
"dev:sandbox": "webpack serve --mode development --open --config-name=sandbox",
"dev:integrated": "yarn build --watch",
"build": "webpack --mode production --config-name=federation",
"build:dev": "webpack --mode development --config-name=federation"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./styles.css": {
"import": "./dist/styles.css",
"require": "./dist/styles.css"
}
},
"lint-staged": {
"*.(js|jsx)": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.!(js|jsx)": [
"prettier --write --ignore-unknown"
]
},
"resolutions": {
"@babel/traverse": "7.23.2",
"browserify-sign": "4.2.2",
"follow-redirects": "1.15.4",
"braces": "^3.0.3",
"ws": "^5.2.4",
"webpack-dev-middleware": "^5.3.4",
"semver": "^7.5.2",
"trim": "^0.0.3",
"nth-check": "^2.0.1"
}
}