@bigbinary/neeto-audit-frontend 2.0.14 → 2.0.15
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/common/recommendedDependencies/common.js +33 -31
- package/common/recommendedDependencies/extension.js +9 -9
- package/common/recommendedDependencies/frontend.js +90 -40
- package/common/recommendedDependencies/nano.js +28 -33
- package/dist/index.js +162 -115
- package/package.json +1 -1
- package/src/verifiers/eslint/index.js +1 -1
- package/src/verifiers/prettier/index.js +1 -1
|
@@ -1,45 +1,47 @@
|
|
|
1
1
|
const DEPENDENCIES = {};
|
|
2
2
|
|
|
3
3
|
const DEV_DEPENDENCIES = {
|
|
4
|
-
"@babel/core": "7.
|
|
5
|
-
"@babel/eslint-parser": "7.
|
|
6
|
-
"@babel/plugin-transform-runtime": "7.
|
|
7
|
-
"@babel/preset-env": "7.
|
|
8
|
-
"@babel/preset-react": "7.
|
|
9
|
-
"@babel/preset-typescript": "7.
|
|
10
|
-
"@babel/runtime": "7.
|
|
11
|
-
"@bigbinary/babel-preset-neeto": "1.0.
|
|
12
|
-
"@bigbinary/eslint-plugin-neeto": "
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"@bigbinary/neetoui": "latest",
|
|
17
|
-
autoprefixer: "10.4.16",
|
|
18
|
-
"babel-loader": "9.1.3",
|
|
19
|
-
"babel-plugin-istanbul": "6.1.1",
|
|
4
|
+
"@babel/core": "^7.19.1",
|
|
5
|
+
"@babel/eslint-parser": "7.17.0",
|
|
6
|
+
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
7
|
+
"@babel/preset-env": "7.17.10",
|
|
8
|
+
"@babel/preset-react": "7.16.7",
|
|
9
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
10
|
+
"@babel/runtime": "7.19.0",
|
|
11
|
+
"@bigbinary/babel-preset-neeto": "^1.0.3",
|
|
12
|
+
"@bigbinary/eslint-plugin-neeto": "1.5.2",
|
|
13
|
+
"autoprefixer": "^10.4.5",
|
|
14
|
+
"babel-loader": "^8.2.5",
|
|
15
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
20
16
|
"babel-plugin-js-logger": "1.0.17",
|
|
21
17
|
"babel-plugin-macros": "3.1.0",
|
|
18
|
+
"babel-plugin-preval": "^5.1.0",
|
|
19
|
+
"babel-plugin-transform-imports": "^2.0.0",
|
|
22
20
|
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
|
|
23
21
|
"babel-preset-react": "6.24.1",
|
|
24
|
-
"babel-preset-typescript": "7.0.0-alpha.19",
|
|
25
|
-
eslint: "8.
|
|
22
|
+
"babel-preset-typescript": "^7.0.0-alpha.19",
|
|
23
|
+
"eslint": "8.14.0",
|
|
26
24
|
"eslint-config-prettier": "8.5.0",
|
|
27
|
-
"eslint-plugin-cypress": "2.
|
|
28
|
-
"eslint-plugin-import": "2.
|
|
25
|
+
"eslint-plugin-cypress": "2.12.1",
|
|
26
|
+
"eslint-plugin-import": "2.26.0",
|
|
29
27
|
"eslint-plugin-jam3": "0.2.3",
|
|
30
28
|
"eslint-plugin-json": "3.1.0",
|
|
29
|
+
"eslint-plugin-no-unsanitized": "^4.0.2",
|
|
31
30
|
"eslint-plugin-prettier": "4.0.0",
|
|
32
|
-
"eslint-plugin-promise": "6.
|
|
33
|
-
"eslint-plugin-react": "7.
|
|
34
|
-
"eslint-plugin-react-hooks": "4.
|
|
35
|
-
"eslint-plugin-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"postcss
|
|
42
|
-
|
|
31
|
+
"eslint-plugin-promise": "6.0.0",
|
|
32
|
+
"eslint-plugin-react": "7.29.4",
|
|
33
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
34
|
+
"eslint-plugin-security": "^1.7.1",
|
|
35
|
+
"eslint-plugin-sonarjs": "^0.21.0",
|
|
36
|
+
"eslint-plugin-unused-imports": "2.0.0",
|
|
37
|
+
"eslint-plugin-xss": "^0.1.12",
|
|
38
|
+
"husky": "7.0.4",
|
|
39
|
+
"lint-staged": "12.4.1",
|
|
40
|
+
"postcss": "^8.4.31",
|
|
41
|
+
"postcss-import": "^15.0.0",
|
|
42
|
+
"postcss-loader": "^7.0.1",
|
|
43
|
+
"postcss-preset-env": "7.8.2",
|
|
44
|
+
"prettier": "2.6.2",
|
|
43
45
|
"prettier-plugin-tailwindcss": "0.1.10",
|
|
44
46
|
};
|
|
45
47
|
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
const DEPENDENCIES = {
|
|
2
|
-
"@honeybadger-io/js": "6.
|
|
3
|
-
"@honeybadger-io/react": "6.1.
|
|
4
|
-
antd: "5.
|
|
2
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
3
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
4
|
+
"antd": "5.16.0",
|
|
5
5
|
axios: "1.7.4",
|
|
6
|
-
i18next: "
|
|
6
|
+
"i18next": "22.5.1",
|
|
7
7
|
"js-logger": "1.6.1",
|
|
8
8
|
ramda: "0.29.1",
|
|
9
9
|
react: "18.2.0",
|
|
10
10
|
"react-dom": "18.2.0",
|
|
11
|
-
"react-i18next": "
|
|
12
|
-
"react-router-dom": "5.3.
|
|
13
|
-
"react-toastify": "8.2
|
|
14
|
-
sass: "1.
|
|
15
|
-
yup: "
|
|
11
|
+
"react-i18next": "12.3.1",
|
|
12
|
+
"react-router-dom": "5.3.3",
|
|
13
|
+
"react-toastify": "8.0.2",
|
|
14
|
+
"sass": "^1.54.9",
|
|
15
|
+
yup: "0.32.11",
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
const DEV_DEPENDENCIES = {};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
const DEPENDENCIES = {};
|
|
2
2
|
|
|
3
3
|
const DEV_DEPENDENCIES = {
|
|
4
|
-
"@bigbinary/neeto-filters-frontend": "latest",
|
|
5
|
-
"@bigbinary/neeto-molecules": "latest",
|
|
6
4
|
"@faker-js/faker": "8.2.0",
|
|
7
|
-
"@honeybadger-io/js": "6.
|
|
8
|
-
"@honeybadger-io/react": "6.1.
|
|
5
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
6
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
7
|
+
"@hello-pangea/dnd": "16.3.0",
|
|
8
|
+
"@rails/activestorage": "7.0.8-3",
|
|
9
9
|
"@rollup/plugin-alias": "5.0.1",
|
|
10
10
|
"@rollup/plugin-babel": "6.0.4",
|
|
11
11
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
@@ -15,54 +15,104 @@ const DEV_DEPENDENCIES = {
|
|
|
15
15
|
"@svgr/rollup": "8.1.0",
|
|
16
16
|
"@tanstack/react-query": "5.40.0",
|
|
17
17
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
"@tippyjs/react": "4.2.6",
|
|
19
|
+
"antd": "5.16.0",
|
|
20
|
+
"avvvatars-react": "0.4.2",
|
|
21
|
+
"axios": "1.7.4",
|
|
22
|
+
"classnames": "2.3.1",
|
|
23
|
+
"crypto-browserify": "^3.12.0",
|
|
24
|
+
"dayjs": "1.11.10",
|
|
25
|
+
"formik": "2.2.9",
|
|
26
|
+
"framer-motion": "11.2.14",
|
|
27
|
+
"husky": "7.0.4",
|
|
28
|
+
"https-browserify": "1.0.0",
|
|
29
|
+
"i18next": "22.5.1",
|
|
23
30
|
"js-logger": "1.6.1",
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
react: "
|
|
31
|
+
"libphonenumber-js": "1.11.2",
|
|
32
|
+
"linkifyjs": "4.1.2",
|
|
33
|
+
"linkify-react": "4.1.3",
|
|
34
|
+
"os-browserify": "0.3.0",
|
|
35
|
+
"path-browserify": "^1.0.1",
|
|
36
|
+
"qs": "^6.11.2",
|
|
37
|
+
"ramda": "0.29.1",
|
|
38
|
+
"react": "18.2.0",
|
|
39
|
+
"react-colorful": "5.6.1",
|
|
27
40
|
"react-dom": "18.2.0",
|
|
28
|
-
"react-
|
|
29
|
-
"react-
|
|
30
|
-
"react-
|
|
31
|
-
"react-
|
|
32
|
-
|
|
41
|
+
"react-drag-listview": "2.0.0",
|
|
42
|
+
"react-helmet": "^6.1.0",
|
|
43
|
+
"react-i18next": "12.3.1",
|
|
44
|
+
"react-resizable": "3.0.4",
|
|
45
|
+
"react-router-dom": "5.3.3",
|
|
46
|
+
"react-toastify": "8.0.2",
|
|
47
|
+
"rollup": "2.79.1",
|
|
33
48
|
"rollup-plugin-analyzer": "4.0.0",
|
|
34
49
|
"rollup-plugin-cleaner": "1.0.0",
|
|
50
|
+
"rollup-plugin-copy": "3.5.0",
|
|
35
51
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
36
52
|
"rollup-plugin-styles": "4.0.0",
|
|
37
|
-
sass: "1.
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
53
|
+
"sass": "^1.54.9",
|
|
54
|
+
"sass-loader": "^13.0.2",
|
|
55
|
+
"stream-browserify": "^3.0.0",
|
|
56
|
+
"stream-http": "3.2.0",
|
|
57
|
+
"tailwindcss": "^3.4.1",
|
|
58
|
+
"tippy.js": "6.3.7",
|
|
59
|
+
"tty-browserify": "0.0.1",
|
|
60
|
+
"url": "^0.11.0",
|
|
61
|
+
"util": "^0.12.5",
|
|
62
|
+
"vm-browserify": "1.1.2",
|
|
63
|
+
"yup": "0.32.11",
|
|
64
|
+
"zustand": "4.3.2"
|
|
41
65
|
};
|
|
42
66
|
|
|
43
67
|
const PEER_DEPENDENCIES = {
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"@bigbinary/neetoui": "latest",
|
|
49
|
-
"@honeybadger-io/js": "^6.5.3",
|
|
50
|
-
"@honeybadger-io/react": "^6.1.9",
|
|
68
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
69
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
70
|
+
"@hello-pangea/dnd": "16.3.0",
|
|
71
|
+
"@rails/activestorage": "7.0.8-3",
|
|
51
72
|
"@tanstack/react-query": "5.40.0",
|
|
52
73
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
74
|
+
"@tippyjs/react": "4.2.6",
|
|
75
|
+
"antd": "5.16.0",
|
|
76
|
+
"avvvatars-react": "0.4.2",
|
|
77
|
+
"axios": "1.7.4",
|
|
78
|
+
"classnames": "2.3.1",
|
|
79
|
+
"crypto-browserify": "^3.12.0",
|
|
80
|
+
"dayjs": "1.11.10",
|
|
81
|
+
"dompurify": "^2.4.0",
|
|
82
|
+
"emoji-mart": "^5.2.2",
|
|
83
|
+
"framer-motion": "11.2.14",
|
|
84
|
+
"formik": "2.2.9",
|
|
85
|
+
"husky": "7.0.4",
|
|
86
|
+
"https-browserify": "1.0.0",
|
|
87
|
+
"i18next": "22.5.1",
|
|
88
|
+
"js-logger": "1.6.1",
|
|
89
|
+
"libphonenumber-js": "1.11.2",
|
|
90
|
+
"linkifyjs": "4.1.2",
|
|
91
|
+
"linkify-react": "4.1.3",
|
|
92
|
+
"os-browserify": "0.3.0",
|
|
93
|
+
"path-browserify": "^1.0.1",
|
|
94
|
+
"qs": "^6.11.2",
|
|
95
|
+
"ramda": "0.29.1",
|
|
96
|
+
"react": "18.2.0",
|
|
97
|
+
"react-colorful": "5.6.1",
|
|
98
|
+
"react-dom": "18.2.0",
|
|
99
|
+
"react-drag-listview": "2.0.0",
|
|
100
|
+
"react-dropzone": "14.2.3",
|
|
61
101
|
"react-helmet": "^6.1.0",
|
|
62
|
-
"react-i18next": "
|
|
63
|
-
"react-
|
|
64
|
-
"react-
|
|
65
|
-
|
|
102
|
+
"react-i18next": "12.3.1",
|
|
103
|
+
"react-resizable": "3.0.4",
|
|
104
|
+
"react-router-dom": "5.3.3",
|
|
105
|
+
"react-toastify": "8.0.2",
|
|
106
|
+
"stream-browserify": "^3.0.0",
|
|
107
|
+
"stream-http": "3.2.0",
|
|
108
|
+
"tailwindcss": "^3.4.1",
|
|
109
|
+
"tippy.js": "6.3.7",
|
|
110
|
+
"tty-browserify": "0.0.1",
|
|
111
|
+
"url": "^0.11.0",
|
|
112
|
+
"util": "^0.12.5",
|
|
113
|
+
"vm-browserify": "1.1.2",
|
|
114
|
+
"yup": "0.32.11",
|
|
115
|
+
"zustand": "4.3.2"
|
|
66
116
|
};
|
|
67
117
|
|
|
68
118
|
export default {
|
|
@@ -4,8 +4,8 @@ const DEV_DEPENDENCIES = {
|
|
|
4
4
|
"@bigbinary/neeto-filters-frontend": "latest",
|
|
5
5
|
"@bigbinary/neeto-molecules": "latest",
|
|
6
6
|
"@faker-js/faker": "8.2.0",
|
|
7
|
-
"@honeybadger-io/js": "6.
|
|
8
|
-
"@honeybadger-io/react": "6.1.
|
|
7
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
8
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
9
9
|
"@rollup/plugin-alias": "5.0.1",
|
|
10
10
|
"@rollup/plugin-babel": "6.0.4",
|
|
11
11
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
@@ -15,54 +15,49 @@ const DEV_DEPENDENCIES = {
|
|
|
15
15
|
"@svgr/rollup": "8.1.0",
|
|
16
16
|
"@tanstack/react-query": "5.40.0",
|
|
17
17
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
18
|
-
antd: "5.
|
|
18
|
+
"antd": "5.16.0",
|
|
19
19
|
axios: "1.7.4",
|
|
20
|
-
classnames: "2.3.
|
|
21
|
-
formik: "2.
|
|
22
|
-
i18next: "
|
|
20
|
+
classnames: "2.3.1",
|
|
21
|
+
formik: "2.2.9",
|
|
22
|
+
"i18next": "22.5.1",
|
|
23
23
|
"js-logger": "1.6.1",
|
|
24
|
-
qs: "6.11.2",
|
|
24
|
+
qs: "^6.11.2",
|
|
25
25
|
ramda: "0.29.1",
|
|
26
26
|
react: "18.2.0",
|
|
27
27
|
"react-dom": "18.2.0",
|
|
28
|
-
"react-helmet": "6.1.0",
|
|
29
|
-
"react-i18next": "
|
|
30
|
-
"react-router-dom": "5.3.
|
|
31
|
-
"react-toastify": "8.2
|
|
28
|
+
"react-helmet": "^6.1.0",
|
|
29
|
+
"react-i18next": "12.3.1",
|
|
30
|
+
"react-router-dom": "5.3.3",
|
|
31
|
+
"react-toastify": "8.0.2",
|
|
32
32
|
rollup: "2.79.1",
|
|
33
33
|
"rollup-plugin-analyzer": "4.0.0",
|
|
34
34
|
"rollup-plugin-cleaner": "1.0.0",
|
|
35
35
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
36
36
|
"rollup-plugin-styles": "4.0.0",
|
|
37
|
-
sass: "1.
|
|
38
|
-
tailwindcss: "3.4.1",
|
|
39
|
-
util: "0.12.5",
|
|
40
|
-
yup: "
|
|
37
|
+
"sass": "^1.54.9",
|
|
38
|
+
tailwindcss: "^3.4.1",
|
|
39
|
+
util: "^0.12.5",
|
|
40
|
+
yup: "0.32.11",
|
|
41
41
|
};
|
|
42
42
|
|
|
43
43
|
const PEER_DEPENDENCIES = {
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@bigbinary/neeto-icons": "latest",
|
|
47
|
-
"@bigbinary/neeto-molecules": "latest",
|
|
48
|
-
"@bigbinary/neetoui": "latest",
|
|
49
|
-
"@honeybadger-io/js": "^6.5.3",
|
|
50
|
-
"@honeybadger-io/react": "^6.1.9",
|
|
44
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
45
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
51
46
|
"@tanstack/react-query": "5.40.0",
|
|
52
47
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
53
48
|
axios: "1.7.4",
|
|
54
|
-
classnames: "
|
|
55
|
-
formik: "
|
|
56
|
-
i18next: "
|
|
57
|
-
"js-logger": "
|
|
58
|
-
ramda: "
|
|
59
|
-
react: "
|
|
60
|
-
"react-dom": "
|
|
49
|
+
classnames: "2.3.1",
|
|
50
|
+
formik: "2.2.9",
|
|
51
|
+
"i18next": "22.5.1",
|
|
52
|
+
"js-logger": "1.6.1",
|
|
53
|
+
ramda: "0.29.1",
|
|
54
|
+
react: "18.2.0",
|
|
55
|
+
"react-dom": "18.2.0",
|
|
61
56
|
"react-helmet": "^6.1.0",
|
|
62
|
-
"react-i18next": "
|
|
63
|
-
"react-router-dom": "
|
|
64
|
-
"react-toastify": "
|
|
65
|
-
yup: "
|
|
57
|
+
"react-i18next": "12.3.1",
|
|
58
|
+
"react-router-dom": "5.3.3",
|
|
59
|
+
"react-toastify": "8.0.2",
|
|
60
|
+
yup: "0.32.11",
|
|
66
61
|
};
|
|
67
62
|
|
|
68
63
|
export default {
|
package/dist/index.js
CHANGED
|
@@ -15938,7 +15938,7 @@ const eslint = async (debug) => {
|
|
|
15938
15938
|
|
|
15939
15939
|
// neeto-molecules has different ESLint rules disabled. This does not match other frontend packages.
|
|
15940
15940
|
// So, decided to skip this check instead of adding a different config check just for a single repo.
|
|
15941
|
-
if (repoName === "neeto-molecules") {
|
|
15941
|
+
if (repoName === "neeto-molecules" || repoName === "neeto-commons-frontend") {
|
|
15942
15942
|
return { isSuccess: true, status: STATUSES.SKIPPED };
|
|
15943
15943
|
}
|
|
15944
15944
|
|
|
@@ -16055,7 +16055,7 @@ const prettier = async (debug) => {
|
|
|
16055
16055
|
|
|
16056
16056
|
// neeto-molecules uses custom tailwind plugins for styles. This does not match other frontend packages.
|
|
16057
16057
|
// So, decided to skip this check instead of adding a different config check just for a single repo.
|
|
16058
|
-
if (repoName === "neeto-molecules") {
|
|
16058
|
+
if (repoName === "neeto-molecules" || repoName === "neeto-commons-frontend") {
|
|
16059
16059
|
return { isSuccess: true, status: STATUSES.SKIPPED };
|
|
16060
16060
|
}
|
|
16061
16061
|
|
|
@@ -16099,45 +16099,47 @@ const prettier = async (debug) => {
|
|
|
16099
16099
|
const DEPENDENCIES$4 = {};
|
|
16100
16100
|
|
|
16101
16101
|
const DEV_DEPENDENCIES$4 = {
|
|
16102
|
-
"@babel/core": "7.
|
|
16103
|
-
"@babel/eslint-parser": "7.
|
|
16104
|
-
"@babel/plugin-transform-runtime": "7.
|
|
16105
|
-
"@babel/preset-env": "7.
|
|
16106
|
-
"@babel/preset-react": "7.
|
|
16107
|
-
"@babel/preset-typescript": "7.
|
|
16108
|
-
"@babel/runtime": "7.
|
|
16109
|
-
"@bigbinary/babel-preset-neeto": "1.0.
|
|
16110
|
-
"@bigbinary/eslint-plugin-neeto": "
|
|
16111
|
-
"
|
|
16112
|
-
"
|
|
16113
|
-
"
|
|
16114
|
-
"@bigbinary/neetoui": "latest",
|
|
16115
|
-
autoprefixer: "10.4.16",
|
|
16116
|
-
"babel-loader": "9.1.3",
|
|
16117
|
-
"babel-plugin-istanbul": "6.1.1",
|
|
16102
|
+
"@babel/core": "^7.19.1",
|
|
16103
|
+
"@babel/eslint-parser": "7.17.0",
|
|
16104
|
+
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
16105
|
+
"@babel/preset-env": "7.17.10",
|
|
16106
|
+
"@babel/preset-react": "7.16.7",
|
|
16107
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
16108
|
+
"@babel/runtime": "7.19.0",
|
|
16109
|
+
"@bigbinary/babel-preset-neeto": "^1.0.3",
|
|
16110
|
+
"@bigbinary/eslint-plugin-neeto": "1.5.2",
|
|
16111
|
+
"autoprefixer": "^10.4.5",
|
|
16112
|
+
"babel-loader": "^8.2.5",
|
|
16113
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
16118
16114
|
"babel-plugin-js-logger": "1.0.17",
|
|
16119
16115
|
"babel-plugin-macros": "3.1.0",
|
|
16116
|
+
"babel-plugin-preval": "^5.1.0",
|
|
16117
|
+
"babel-plugin-transform-imports": "^2.0.0",
|
|
16120
16118
|
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
|
|
16121
16119
|
"babel-preset-react": "6.24.1",
|
|
16122
|
-
"babel-preset-typescript": "7.0.0-alpha.19",
|
|
16123
|
-
eslint: "8.
|
|
16120
|
+
"babel-preset-typescript": "^7.0.0-alpha.19",
|
|
16121
|
+
"eslint": "8.14.0",
|
|
16124
16122
|
"eslint-config-prettier": "8.5.0",
|
|
16125
|
-
"eslint-plugin-cypress": "2.
|
|
16126
|
-
"eslint-plugin-import": "2.
|
|
16123
|
+
"eslint-plugin-cypress": "2.12.1",
|
|
16124
|
+
"eslint-plugin-import": "2.26.0",
|
|
16127
16125
|
"eslint-plugin-jam3": "0.2.3",
|
|
16128
16126
|
"eslint-plugin-json": "3.1.0",
|
|
16127
|
+
"eslint-plugin-no-unsanitized": "^4.0.2",
|
|
16129
16128
|
"eslint-plugin-prettier": "4.0.0",
|
|
16130
|
-
"eslint-plugin-promise": "6.
|
|
16131
|
-
"eslint-plugin-react": "7.
|
|
16132
|
-
"eslint-plugin-react-hooks": "4.
|
|
16133
|
-
"eslint-plugin-
|
|
16134
|
-
|
|
16135
|
-
"
|
|
16136
|
-
|
|
16137
|
-
"
|
|
16138
|
-
"
|
|
16139
|
-
"postcss
|
|
16140
|
-
|
|
16129
|
+
"eslint-plugin-promise": "6.0.0",
|
|
16130
|
+
"eslint-plugin-react": "7.29.4",
|
|
16131
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
16132
|
+
"eslint-plugin-security": "^1.7.1",
|
|
16133
|
+
"eslint-plugin-sonarjs": "^0.21.0",
|
|
16134
|
+
"eslint-plugin-unused-imports": "2.0.0",
|
|
16135
|
+
"eslint-plugin-xss": "^0.1.12",
|
|
16136
|
+
"husky": "7.0.4",
|
|
16137
|
+
"lint-staged": "12.4.1",
|
|
16138
|
+
"postcss": "^8.4.31",
|
|
16139
|
+
"postcss-import": "^15.0.0",
|
|
16140
|
+
"postcss-loader": "^7.0.1",
|
|
16141
|
+
"postcss-preset-env": "7.8.2",
|
|
16142
|
+
"prettier": "2.6.2",
|
|
16141
16143
|
"prettier-plugin-tailwindcss": "0.1.10",
|
|
16142
16144
|
};
|
|
16143
16145
|
|
|
@@ -16150,20 +16152,20 @@ var common = {
|
|
|
16150
16152
|
};
|
|
16151
16153
|
|
|
16152
16154
|
const DEPENDENCIES$3 = {
|
|
16153
|
-
"@honeybadger-io/js": "6.
|
|
16154
|
-
"@honeybadger-io/react": "6.1.
|
|
16155
|
-
antd: "5.
|
|
16155
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
16156
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
16157
|
+
"antd": "5.16.0",
|
|
16156
16158
|
axios: "1.7.4",
|
|
16157
|
-
i18next: "
|
|
16159
|
+
"i18next": "22.5.1",
|
|
16158
16160
|
"js-logger": "1.6.1",
|
|
16159
16161
|
ramda: "0.29.1",
|
|
16160
16162
|
react: "18.2.0",
|
|
16161
16163
|
"react-dom": "18.2.0",
|
|
16162
|
-
"react-i18next": "
|
|
16163
|
-
"react-router-dom": "5.3.
|
|
16164
|
-
"react-toastify": "8.2
|
|
16165
|
-
sass: "1.
|
|
16166
|
-
yup: "
|
|
16164
|
+
"react-i18next": "12.3.1",
|
|
16165
|
+
"react-router-dom": "5.3.3",
|
|
16166
|
+
"react-toastify": "8.0.2",
|
|
16167
|
+
"sass": "^1.54.9",
|
|
16168
|
+
yup: "0.32.11",
|
|
16167
16169
|
};
|
|
16168
16170
|
|
|
16169
16171
|
const DEV_DEPENDENCIES$3 = {};
|
|
@@ -16179,11 +16181,11 @@ var extension = {
|
|
|
16179
16181
|
const DEPENDENCIES$2 = {};
|
|
16180
16182
|
|
|
16181
16183
|
const DEV_DEPENDENCIES$2 = {
|
|
16182
|
-
"@bigbinary/neeto-filters-frontend": "latest",
|
|
16183
|
-
"@bigbinary/neeto-molecules": "latest",
|
|
16184
16184
|
"@faker-js/faker": "8.2.0",
|
|
16185
|
-
"@honeybadger-io/js": "6.
|
|
16186
|
-
"@honeybadger-io/react": "6.1.
|
|
16185
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
16186
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
16187
|
+
"@hello-pangea/dnd": "16.3.0",
|
|
16188
|
+
"@rails/activestorage": "7.0.8-3",
|
|
16187
16189
|
"@rollup/plugin-alias": "5.0.1",
|
|
16188
16190
|
"@rollup/plugin-babel": "6.0.4",
|
|
16189
16191
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
@@ -16193,54 +16195,104 @@ const DEV_DEPENDENCIES$2 = {
|
|
|
16193
16195
|
"@svgr/rollup": "8.1.0",
|
|
16194
16196
|
"@tanstack/react-query": "5.40.0",
|
|
16195
16197
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
16196
|
-
|
|
16197
|
-
|
|
16198
|
-
|
|
16199
|
-
|
|
16200
|
-
|
|
16198
|
+
"@tippyjs/react": "4.2.6",
|
|
16199
|
+
"antd": "5.16.0",
|
|
16200
|
+
"avvvatars-react": "0.4.2",
|
|
16201
|
+
"axios": "1.7.4",
|
|
16202
|
+
"classnames": "2.3.1",
|
|
16203
|
+
"crypto-browserify": "^3.12.0",
|
|
16204
|
+
"dayjs": "1.11.10",
|
|
16205
|
+
"formik": "2.2.9",
|
|
16206
|
+
"framer-motion": "11.2.14",
|
|
16207
|
+
"husky": "7.0.4",
|
|
16208
|
+
"https-browserify": "1.0.0",
|
|
16209
|
+
"i18next": "22.5.1",
|
|
16201
16210
|
"js-logger": "1.6.1",
|
|
16202
|
-
|
|
16203
|
-
|
|
16204
|
-
react: "
|
|
16211
|
+
"libphonenumber-js": "1.11.2",
|
|
16212
|
+
"linkifyjs": "4.1.2",
|
|
16213
|
+
"linkify-react": "4.1.3",
|
|
16214
|
+
"os-browserify": "0.3.0",
|
|
16215
|
+
"path-browserify": "^1.0.1",
|
|
16216
|
+
"qs": "^6.11.2",
|
|
16217
|
+
"ramda": "0.29.1",
|
|
16218
|
+
"react": "18.2.0",
|
|
16219
|
+
"react-colorful": "5.6.1",
|
|
16205
16220
|
"react-dom": "18.2.0",
|
|
16206
|
-
"react-
|
|
16207
|
-
"react-
|
|
16208
|
-
"react-
|
|
16209
|
-
"react-
|
|
16210
|
-
|
|
16221
|
+
"react-drag-listview": "2.0.0",
|
|
16222
|
+
"react-helmet": "^6.1.0",
|
|
16223
|
+
"react-i18next": "12.3.1",
|
|
16224
|
+
"react-resizable": "3.0.4",
|
|
16225
|
+
"react-router-dom": "5.3.3",
|
|
16226
|
+
"react-toastify": "8.0.2",
|
|
16227
|
+
"rollup": "2.79.1",
|
|
16211
16228
|
"rollup-plugin-analyzer": "4.0.0",
|
|
16212
16229
|
"rollup-plugin-cleaner": "1.0.0",
|
|
16230
|
+
"rollup-plugin-copy": "3.5.0",
|
|
16213
16231
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
16214
16232
|
"rollup-plugin-styles": "4.0.0",
|
|
16215
|
-
sass: "1.
|
|
16216
|
-
|
|
16217
|
-
|
|
16218
|
-
|
|
16233
|
+
"sass": "^1.54.9",
|
|
16234
|
+
"sass-loader": "^13.0.2",
|
|
16235
|
+
"stream-browserify": "^3.0.0",
|
|
16236
|
+
"stream-http": "3.2.0",
|
|
16237
|
+
"tailwindcss": "^3.4.1",
|
|
16238
|
+
"tippy.js": "6.3.7",
|
|
16239
|
+
"tty-browserify": "0.0.1",
|
|
16240
|
+
"url": "^0.11.0",
|
|
16241
|
+
"util": "^0.12.5",
|
|
16242
|
+
"vm-browserify": "1.1.2",
|
|
16243
|
+
"yup": "0.32.11",
|
|
16244
|
+
"zustand": "4.3.2"
|
|
16219
16245
|
};
|
|
16220
16246
|
|
|
16221
16247
|
const PEER_DEPENDENCIES$2 = {
|
|
16222
|
-
"@
|
|
16223
|
-
"@
|
|
16224
|
-
"@
|
|
16225
|
-
"@
|
|
16226
|
-
"@bigbinary/neetoui": "latest",
|
|
16227
|
-
"@honeybadger-io/js": "^6.5.3",
|
|
16228
|
-
"@honeybadger-io/react": "^6.1.9",
|
|
16248
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
16249
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
16250
|
+
"@hello-pangea/dnd": "16.3.0",
|
|
16251
|
+
"@rails/activestorage": "7.0.8-3",
|
|
16229
16252
|
"@tanstack/react-query": "5.40.0",
|
|
16230
16253
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
16231
|
-
|
|
16232
|
-
|
|
16233
|
-
|
|
16234
|
-
|
|
16235
|
-
"
|
|
16236
|
-
|
|
16237
|
-
|
|
16238
|
-
"
|
|
16254
|
+
"@tippyjs/react": "4.2.6",
|
|
16255
|
+
"antd": "5.16.0",
|
|
16256
|
+
"avvvatars-react": "0.4.2",
|
|
16257
|
+
"axios": "1.7.4",
|
|
16258
|
+
"classnames": "2.3.1",
|
|
16259
|
+
"crypto-browserify": "^3.12.0",
|
|
16260
|
+
"dayjs": "1.11.10",
|
|
16261
|
+
"dompurify": "^2.4.0",
|
|
16262
|
+
"emoji-mart": "^5.2.2",
|
|
16263
|
+
"framer-motion": "11.2.14",
|
|
16264
|
+
"formik": "2.2.9",
|
|
16265
|
+
"husky": "7.0.4",
|
|
16266
|
+
"https-browserify": "1.0.0",
|
|
16267
|
+
"i18next": "22.5.1",
|
|
16268
|
+
"js-logger": "1.6.1",
|
|
16269
|
+
"libphonenumber-js": "1.11.2",
|
|
16270
|
+
"linkifyjs": "4.1.2",
|
|
16271
|
+
"linkify-react": "4.1.3",
|
|
16272
|
+
"os-browserify": "0.3.0",
|
|
16273
|
+
"path-browserify": "^1.0.1",
|
|
16274
|
+
"qs": "^6.11.2",
|
|
16275
|
+
"ramda": "0.29.1",
|
|
16276
|
+
"react": "18.2.0",
|
|
16277
|
+
"react-colorful": "5.6.1",
|
|
16278
|
+
"react-dom": "18.2.0",
|
|
16279
|
+
"react-drag-listview": "2.0.0",
|
|
16280
|
+
"react-dropzone": "14.2.3",
|
|
16239
16281
|
"react-helmet": "^6.1.0",
|
|
16240
|
-
"react-i18next": "
|
|
16241
|
-
"react-
|
|
16242
|
-
"react-
|
|
16243
|
-
|
|
16282
|
+
"react-i18next": "12.3.1",
|
|
16283
|
+
"react-resizable": "3.0.4",
|
|
16284
|
+
"react-router-dom": "5.3.3",
|
|
16285
|
+
"react-toastify": "8.0.2",
|
|
16286
|
+
"stream-browserify": "^3.0.0",
|
|
16287
|
+
"stream-http": "3.2.0",
|
|
16288
|
+
"tailwindcss": "^3.4.1",
|
|
16289
|
+
"tippy.js": "6.3.7",
|
|
16290
|
+
"tty-browserify": "0.0.1",
|
|
16291
|
+
"url": "^0.11.0",
|
|
16292
|
+
"util": "^0.12.5",
|
|
16293
|
+
"vm-browserify": "1.1.2",
|
|
16294
|
+
"yup": "0.32.11",
|
|
16295
|
+
"zustand": "4.3.2"
|
|
16244
16296
|
};
|
|
16245
16297
|
|
|
16246
16298
|
var frontend = {
|
|
@@ -16255,8 +16307,8 @@ const DEV_DEPENDENCIES$1 = {
|
|
|
16255
16307
|
"@bigbinary/neeto-filters-frontend": "latest",
|
|
16256
16308
|
"@bigbinary/neeto-molecules": "latest",
|
|
16257
16309
|
"@faker-js/faker": "8.2.0",
|
|
16258
|
-
"@honeybadger-io/js": "6.
|
|
16259
|
-
"@honeybadger-io/react": "6.1.
|
|
16310
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
16311
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
16260
16312
|
"@rollup/plugin-alias": "5.0.1",
|
|
16261
16313
|
"@rollup/plugin-babel": "6.0.4",
|
|
16262
16314
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
@@ -16266,54 +16318,49 @@ const DEV_DEPENDENCIES$1 = {
|
|
|
16266
16318
|
"@svgr/rollup": "8.1.0",
|
|
16267
16319
|
"@tanstack/react-query": "5.40.0",
|
|
16268
16320
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
16269
|
-
antd: "5.
|
|
16321
|
+
"antd": "5.16.0",
|
|
16270
16322
|
axios: "1.7.4",
|
|
16271
|
-
classnames: "2.3.
|
|
16272
|
-
formik: "2.
|
|
16273
|
-
i18next: "
|
|
16323
|
+
classnames: "2.3.1",
|
|
16324
|
+
formik: "2.2.9",
|
|
16325
|
+
"i18next": "22.5.1",
|
|
16274
16326
|
"js-logger": "1.6.1",
|
|
16275
|
-
qs: "6.11.2",
|
|
16327
|
+
qs: "^6.11.2",
|
|
16276
16328
|
ramda: "0.29.1",
|
|
16277
16329
|
react: "18.2.0",
|
|
16278
16330
|
"react-dom": "18.2.0",
|
|
16279
|
-
"react-helmet": "6.1.0",
|
|
16280
|
-
"react-i18next": "
|
|
16281
|
-
"react-router-dom": "5.3.
|
|
16282
|
-
"react-toastify": "8.2
|
|
16331
|
+
"react-helmet": "^6.1.0",
|
|
16332
|
+
"react-i18next": "12.3.1",
|
|
16333
|
+
"react-router-dom": "5.3.3",
|
|
16334
|
+
"react-toastify": "8.0.2",
|
|
16283
16335
|
rollup: "2.79.1",
|
|
16284
16336
|
"rollup-plugin-analyzer": "4.0.0",
|
|
16285
16337
|
"rollup-plugin-cleaner": "1.0.0",
|
|
16286
16338
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
16287
16339
|
"rollup-plugin-styles": "4.0.0",
|
|
16288
|
-
sass: "1.
|
|
16289
|
-
tailwindcss: "3.4.1",
|
|
16290
|
-
util: "0.12.5",
|
|
16291
|
-
yup: "
|
|
16340
|
+
"sass": "^1.54.9",
|
|
16341
|
+
tailwindcss: "^3.4.1",
|
|
16342
|
+
util: "^0.12.5",
|
|
16343
|
+
yup: "0.32.11",
|
|
16292
16344
|
};
|
|
16293
16345
|
|
|
16294
16346
|
const PEER_DEPENDENCIES$1 = {
|
|
16295
|
-
"@
|
|
16296
|
-
"@
|
|
16297
|
-
"@bigbinary/neeto-icons": "latest",
|
|
16298
|
-
"@bigbinary/neeto-molecules": "latest",
|
|
16299
|
-
"@bigbinary/neetoui": "latest",
|
|
16300
|
-
"@honeybadger-io/js": "^6.5.3",
|
|
16301
|
-
"@honeybadger-io/react": "^6.1.9",
|
|
16347
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
16348
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
16302
16349
|
"@tanstack/react-query": "5.40.0",
|
|
16303
16350
|
"@tanstack/react-query-devtools": "5.40.0",
|
|
16304
16351
|
axios: "1.7.4",
|
|
16305
|
-
classnames: "
|
|
16306
|
-
formik: "
|
|
16307
|
-
i18next: "
|
|
16308
|
-
"js-logger": "
|
|
16309
|
-
ramda: "
|
|
16310
|
-
react: "
|
|
16311
|
-
"react-dom": "
|
|
16352
|
+
classnames: "2.3.1",
|
|
16353
|
+
formik: "2.2.9",
|
|
16354
|
+
"i18next": "22.5.1",
|
|
16355
|
+
"js-logger": "1.6.1",
|
|
16356
|
+
ramda: "0.29.1",
|
|
16357
|
+
react: "18.2.0",
|
|
16358
|
+
"react-dom": "18.2.0",
|
|
16312
16359
|
"react-helmet": "^6.1.0",
|
|
16313
|
-
"react-i18next": "
|
|
16314
|
-
"react-router-dom": "
|
|
16315
|
-
"react-toastify": "
|
|
16316
|
-
yup: "
|
|
16360
|
+
"react-i18next": "12.3.1",
|
|
16361
|
+
"react-router-dom": "5.3.3",
|
|
16362
|
+
"react-toastify": "8.0.2",
|
|
16363
|
+
yup: "0.32.11",
|
|
16317
16364
|
};
|
|
16318
16365
|
|
|
16319
16366
|
var nano = {
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ const eslint = async (debug) => {
|
|
|
14
14
|
|
|
15
15
|
// neeto-molecules has different ESLint rules disabled. This does not match other frontend packages.
|
|
16
16
|
// So, decided to skip this check instead of adding a different config check just for a single repo.
|
|
17
|
-
if (repoName === "neeto-molecules") {
|
|
17
|
+
if (repoName === "neeto-molecules" || repoName === "neeto-commons-frontend") {
|
|
18
18
|
return { isSuccess: true, status: STATUSES.SKIPPED };
|
|
19
19
|
}
|
|
20
20
|
|
|
@@ -14,7 +14,7 @@ const prettier = async (debug) => {
|
|
|
14
14
|
|
|
15
15
|
// neeto-molecules uses custom tailwind plugins for styles. This does not match other frontend packages.
|
|
16
16
|
// So, decided to skip this check instead of adding a different config check just for a single repo.
|
|
17
|
-
if (repoName === "neeto-molecules") {
|
|
17
|
+
if (repoName === "neeto-molecules" || repoName === "neeto-commons-frontend") {
|
|
18
18
|
return { isSuccess: true, status: STATUSES.SKIPPED };
|
|
19
19
|
}
|
|
20
20
|
|