@selfdecode/sd-component-library 4.0.72 → 4.0.73-test1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +16 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfdecode/sd-component-library",
3
- "version": "4.0.72",
3
+ "version": "4.0.73-test1",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "main": "./lib/index.js",
@@ -80,6 +80,7 @@
80
80
  },
81
81
  "devDependencies": {
82
82
  "@babel/core": "^7.16.0",
83
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
83
84
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
84
85
  "@svgr/webpack": "^5.5.0",
85
86
  "@testing-library/jest-dom": "^4.2.4",
@@ -91,6 +92,7 @@
91
92
  "@types/history": "^4.7.11",
92
93
  "@types/jest": "^24.9.1",
93
94
  "@types/lodash": "^4.14.182",
95
+ "@types/lodash-es": "^4.17.8",
94
96
  "@types/node": "^18.7.11",
95
97
  "@types/react": "^18.0.17",
96
98
  "@types/react-date-range": "1.1.3",
@@ -113,13 +115,14 @@
113
115
  "eslint-config-react-app": "^7.0.1",
114
116
  "eslint-webpack-plugin": "^3.1.1",
115
117
  "file-loader": "^6.2.0",
116
- "husky": "^4.2.5",
117
118
  "html-webpack-plugin": "^5.5.0",
119
+ "husky": "^4.2.5",
118
120
  "jest": "^27.4.3",
119
121
  "jest-canvas-mock": "^2.4.0",
120
122
  "jest-resolve": "^27.4.2",
121
123
  "jest-watch-typeahead": "^1.0.0",
122
124
  "lint-staged": "^10.2.11",
125
+ "lodash-es": "^4.17.21",
123
126
  "mini-css-extract-plugin": "^2.4.5",
124
127
  "postcss": "^8.4.4",
125
128
  "postcss-flexbugs-fixes": "^5.0.2",
@@ -138,13 +141,16 @@
138
141
  "tailwindcss": "^3.0.2",
139
142
  "terser-webpack-plugin": "^5.2.5",
140
143
  "typescript": "^4.6.4",
141
- "webpack-manifest-plugin": "^4.0.2",
142
- "webpack-cli": "^4.1.0",
143
- "webpack-node-externals": "^2.5.2",
144
144
  "webpack": "^5.64.4",
145
+ "webpack-cli": "^4.1.0",
145
146
  "webpack-dev-server": "^4.6.0",
147
+ "webpack-manifest-plugin": "^4.0.2",
148
+ "webpack-node-externals": "^2.5.2",
146
149
  "workbox-webpack-plugin": "^6.4.1"
147
150
  },
151
+ "peerDependencies": {
152
+ "lodash-es": "^4.17.21"
153
+ },
148
154
  "description": "The SelfDecode Component Library (SCL) was built with intention of speeding up the development of all products under SD, by creating a single source for all shared components such as form components which are re-used across our different products.",
149
155
  "repository": {
150
156
  "type": "git",
@@ -185,7 +191,8 @@
185
191
  ],
186
192
  "moduleNameMapper": {
187
193
  "^react-native$": "react-native-web",
188
- "^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
194
+ "^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy",
195
+ "lodash-es": "lodash"
189
196
  },
190
197
  "moduleFileExtensions": [
191
198
  "web.js",
@@ -208,6 +215,9 @@
208
215
  "babel": {
209
216
  "presets": [
210
217
  "react-app"
218
+ ],
219
+ "plugins": [
220
+ "@babel/plugin-syntax-dynamic-import"
211
221
  ]
212
222
  }
213
223
  }