@elliemae/app-react-dependencies 4.9.0 → 5.0.0-next.1
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.
- package/dist/cjs/app.config.json +17 -0
- package/dist/cjs/index.html +25 -0
- package/dist/cjs/index.js +70 -0
- package/dist/cjs/package.json +4 -0
- package/dist/esm/app.config.json +17 -0
- package/dist/esm/index.html +25 -0
- package/dist/esm/index.js +40 -0
- package/dist/esm/package.json +4 -0
- package/dist/public/app.config.json +17 -0
- package/dist/public/index.html +1 -0
- package/dist/public/js/emuiAppReactDependencies.2f21ea4dfe70639eea6b.js +234 -0
- package/dist/public/js/emuiAppReactDependencies.2f21ea4dfe70639eea6b.js.br +0 -0
- package/dist/public/js/emuiAppReactDependencies.2f21ea4dfe70639eea6b.js.gz +0 -0
- package/dist/public/js/emuiAppReactDependencies.2f21ea4dfe70639eea6b.js.map +1 -0
- package/dist/types/index.d.ts +18 -0
- package/dist/umd/app.config.json +17 -0
- package/dist/umd/index.html +1 -0
- package/dist/umd/index.js +234 -0
- package/dist/umd/index.js.br +0 -0
- package/dist/umd/index.js.gz +0 -0
- package/dist/umd/index.js.map +1 -0
- package/package.json +52 -32
package/package.json
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/app-react-dependencies",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-next.1",
|
|
4
4
|
"description": "ICE MT React Application Dependencies",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"main": "./dist/cjs/index.js",
|
|
7
|
+
"module": "./dist/esm/index.js",
|
|
8
|
+
"unpkg": "./dist/umd/index.js",
|
|
9
|
+
"jsdelivr": "./dist/umd/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"demo",
|
|
13
|
+
"build"
|
|
14
|
+
],
|
|
8
15
|
"publishConfig": {
|
|
9
16
|
"access": "public"
|
|
10
17
|
},
|
|
@@ -13,25 +20,37 @@
|
|
|
13
20
|
"url": "https://git.elliemae.io/platform-ui/app-react-dependencies.git"
|
|
14
21
|
},
|
|
15
22
|
"engines": {
|
|
16
|
-
"pnpm": ">=
|
|
17
|
-
"node": ">=
|
|
23
|
+
"pnpm": ">=8",
|
|
24
|
+
"node": ">=18"
|
|
18
25
|
},
|
|
19
26
|
"author": "ICE MT",
|
|
20
27
|
"license": "MIT",
|
|
21
28
|
"scripts": {
|
|
22
|
-
"build": "
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
29
|
+
"build": "pui-cli pack -p",
|
|
30
|
+
"build:dev": "pui-cli pack",
|
|
31
|
+
"docs:start": "pui-doc-gen start",
|
|
32
|
+
"docs:build": "pui-doc-gen build",
|
|
33
|
+
"docs:version": "pui-doc-gen version",
|
|
34
|
+
"docs:serve": "pui-doc-gen serve",
|
|
35
|
+
"gendoc": "pui-cli gendoc",
|
|
36
|
+
"lint": "pui-cli lint",
|
|
26
37
|
"lint:fix": "pui-cli lint --fix",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
38
|
+
"release": "semantic-release",
|
|
39
|
+
"start": "pui-cli start",
|
|
40
|
+
"start:server": "http-server ./dist/public -p 3000",
|
|
41
|
+
"storybook": "exit 0",
|
|
42
|
+
"storybook:docs": "exit 0",
|
|
31
43
|
"storybook:build": "exit 0",
|
|
32
44
|
"storybook:docs:build": "exit 0",
|
|
45
|
+
"storybook:prod": "exit 0",
|
|
46
|
+
"setup": "rimraf node_modules && rimraf pnpm-lock.yaml && pnpm i",
|
|
47
|
+
"test": "pui-cli test -p",
|
|
48
|
+
"test:fix": "pui-cli test -f",
|
|
49
|
+
"test:watch": "jest --watch",
|
|
50
|
+
"test:debug": "pui-cli test --debug",
|
|
51
|
+
"test:staged": "jest --coverage --passWithNoTests --bail --findRelatedTests",
|
|
52
|
+
"tscheck": "pui-cli tscheck --files",
|
|
33
53
|
"upgrade": "ncu -u && npm run setup",
|
|
34
|
-
"release": "semantic-release",
|
|
35
54
|
"prepare": "[ -n \"$CI\" ] || husky install"
|
|
36
55
|
},
|
|
37
56
|
"jestSonar": {
|
|
@@ -41,29 +60,30 @@
|
|
|
41
60
|
"indent": 4
|
|
42
61
|
},
|
|
43
62
|
"dependencies": {
|
|
44
|
-
"@babel/runtime": "~7.21.
|
|
63
|
+
"@babel/runtime": "~7.21.5",
|
|
45
64
|
"@hot-loader/react-dom": "~17.0.2",
|
|
46
|
-
"@reduxjs/toolkit": "~1.9.
|
|
47
|
-
"@types/dompurify": "~3.0.
|
|
65
|
+
"@reduxjs/toolkit": "~1.9.5",
|
|
66
|
+
"@types/dompurify": "~3.0.2",
|
|
48
67
|
"@types/history": "~5.0.0",
|
|
49
68
|
"@types/hoist-non-react-statics": "~3.3.1",
|
|
50
69
|
"@types/invariant": "~2.2.35",
|
|
51
|
-
"@types/lodash": "~4.14.
|
|
70
|
+
"@types/lodash": "~4.14.194",
|
|
52
71
|
"@types/prop-types": "~15.7.5",
|
|
53
72
|
"@types/pubsub-js": "~1.8.3",
|
|
54
|
-
"@types/react": "~18.
|
|
55
|
-
"@types/react-dom": "~18.
|
|
73
|
+
"@types/react": "~18.2.5",
|
|
74
|
+
"@types/react-dom": "~18.2.3",
|
|
56
75
|
"@types/react-helmet": "~6.1.6",
|
|
57
76
|
"@types/react-redux": "~7.1.25",
|
|
58
77
|
"@types/react-router-dom": "~5.3.3",
|
|
59
78
|
"@types/styled-components": "~5.1.26",
|
|
60
79
|
"@types/styled-system": "~5.1.16",
|
|
61
|
-
"@types/yup": "~0.
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
80
|
+
"@types/yup": "~0.32.0",
|
|
81
|
+
"@xstyled/styled-components": "3.8.0",
|
|
82
|
+
"axios": "~1.4.0",
|
|
83
|
+
"core-js": "~3.30.1",
|
|
84
|
+
"date-fns": "~2.30.0",
|
|
65
85
|
"date-fns-tz": "~2.0.0",
|
|
66
|
-
"dompurify": "~3.0.
|
|
86
|
+
"dompurify": "~3.0.2",
|
|
67
87
|
"history": "~5.3.0",
|
|
68
88
|
"hoist-non-react-statics": "~3.3.2",
|
|
69
89
|
"immer": "~9.0.21",
|
|
@@ -76,20 +96,20 @@
|
|
|
76
96
|
"react-aria-live": "~2.0.5",
|
|
77
97
|
"react-dom": "~18.2.0",
|
|
78
98
|
"react-helmet": "~6.1.0",
|
|
79
|
-
"react-hook-form": "~7.43.
|
|
99
|
+
"react-hook-form": "~7.43.9",
|
|
80
100
|
"react-hot-loader": "~4.13.1",
|
|
81
101
|
"react-redux": "~8.0.5",
|
|
82
|
-
"react-router-dom": "~6.
|
|
102
|
+
"react-router-dom": "~6.11.1",
|
|
83
103
|
"redux-injectors": "~2.1.0",
|
|
84
104
|
"redux-saga": "~1.2.3",
|
|
85
|
-
"reselect": "~4.1.
|
|
105
|
+
"reselect": "~4.1.8",
|
|
86
106
|
"sanitize.css": "~13.0.0",
|
|
87
|
-
"styled-components": "~5.3.
|
|
107
|
+
"styled-components": "~5.3.10",
|
|
88
108
|
"styled-system": "~5.1.5",
|
|
89
|
-
"yup": "~1.
|
|
109
|
+
"yup": "~1.1.1"
|
|
90
110
|
},
|
|
91
111
|
"devDependencies": {
|
|
92
112
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.7.0",
|
|
93
|
-
"@elliemae/pui-cli": "~8.
|
|
113
|
+
"@elliemae/pui-cli": "~8.9.0"
|
|
94
114
|
}
|
|
95
115
|
}
|