@bigbinary/neeto-audit-frontend 2.0.13 → 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/.github/workflows/create_and_publish_release.yml +5 -5
- package/README.md +1 -0
- package/common/recommendedDependencies/common.js +33 -31
- package/common/recommendedDependencies/extension.js +10 -10
- package/common/recommendedDependencies/frontend.js +90 -40
- package/common/recommendedDependencies/nano.js +30 -35
- package/dist/index.js +1150 -640
- package/package.json +2 -2
- package/src/verifiers/eslint/index.js +1 -1
- package/src/verifiers/prettier/index.js +1 -1
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
contains(github.event.pull_request.labels.*.name, 'major') ) }}
|
|
17
17
|
steps:
|
|
18
18
|
- name: Checkout the repository
|
|
19
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
20
|
|
|
21
21
|
- name: Setup git user
|
|
22
22
|
run: |
|
|
@@ -24,12 +24,12 @@ jobs:
|
|
|
24
24
|
git config user.email "thejuspaul@pm.me"
|
|
25
25
|
|
|
26
26
|
- name: Setup NodeJS LTS version
|
|
27
|
-
uses: actions/setup-node@
|
|
27
|
+
uses: actions/setup-node@v4
|
|
28
28
|
with:
|
|
29
|
-
node-version
|
|
29
|
+
node-version: "20"
|
|
30
30
|
|
|
31
31
|
- name: Install PNPM
|
|
32
|
-
uses: pnpm/action-setup@
|
|
32
|
+
uses: pnpm/action-setup@v4
|
|
33
33
|
id: pnpm-install
|
|
34
34
|
with:
|
|
35
35
|
run_install: false
|
|
@@ -40,7 +40,7 @@ jobs:
|
|
|
40
40
|
run: |
|
|
41
41
|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
|
|
42
42
|
|
|
43
|
-
- uses: actions/cache@
|
|
43
|
+
- uses: actions/cache@v4
|
|
44
44
|
name: Setup pnpm cache
|
|
45
45
|
with:
|
|
46
46
|
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
|
package/README.md
CHANGED
|
@@ -52,3 +52,4 @@ If, for any reason, `yarn neeto-audit-frontend` command fails after pushing the
|
|
|
52
52
|
## Building and Releasing
|
|
53
53
|
|
|
54
54
|
The `@bigbinary/neeto-audit-frontend` gets published to NPM when we merge a PR with `patch`, `minor` or `major` label to the main branch. The `patch` label is used for bug fixes, `minor` label is used for new features and `major` label is used for breaking changes. You can checkout the `Create and publish releases` workflow in GitHub Actions to get a live update. Please note that before publishing the package, you need to verify the functionality in some of the neeto web-apps locally using `yalc` package manager.
|
|
55
|
+
|
|
@@ -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.
|
|
5
|
-
axios: "1.
|
|
6
|
-
i18next: "
|
|
2
|
+
"@honeybadger-io/js": "^6.4.1",
|
|
3
|
+
"@honeybadger-io/react": "^6.1.3",
|
|
4
|
+
"antd": "5.16.0",
|
|
5
|
+
axios: "1.7.4",
|
|
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.
|
|
19
|
-
axios: "1.
|
|
20
|
-
classnames: "2.3.
|
|
21
|
-
formik: "2.
|
|
22
|
-
i18next: "
|
|
18
|
+
"antd": "5.16.0",
|
|
19
|
+
axios: "1.7.4",
|
|
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
|
-
axios: "
|
|
54
|
-
classnames: "
|
|
55
|
-
formik: "
|
|
56
|
-
i18next: "
|
|
57
|
-
"js-logger": "
|
|
58
|
-
ramda: "
|
|
59
|
-
react: "
|
|
60
|
-
"react-dom": "
|
|
48
|
+
axios: "1.7.4",
|
|
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 {
|