@bigbinary/neeto-integrations-frontend 2.10.3 → 2.10.5
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/README.md +77 -151
- package/app/javascript/src/translations/en.json +3 -1
- package/dist/Daily.cjs.js +44 -40
- package/dist/Daily.cjs.js.map +1 -1
- package/dist/Daily.js +44 -40
- package/dist/Daily.js.map +1 -1
- package/dist/GoogleCalender.cjs.js +46 -42
- package/dist/GoogleCalender.cjs.js.map +1 -1
- package/dist/GoogleCalender.js +46 -42
- package/dist/GoogleCalender.js.map +1 -1
- package/dist/Twilio.cjs.js +31 -31
- package/dist/Twilio.cjs.js.map +1 -1
- package/dist/Twilio.js +31 -31
- package/dist/Twilio.js.map +1 -1
- package/dist/ZapierForm.cjs.js +29 -29
- package/dist/ZapierForm.cjs.js.map +1 -1
- package/dist/ZapierForm.js +29 -29
- package/dist/ZapierForm.js.map +1 -1
- package/dist/Zoom.cjs.js +45 -41
- package/dist/Zoom.cjs.js.map +1 -1
- package/dist/Zoom.js +45 -41
- package/dist/Zoom.js.map +1 -1
- package/dist/index.cjs.js +53 -49
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +53 -49
- package/dist/index.js.map +1 -1
- package/package.json +75 -70
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-integrations-frontend",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.5",
|
|
4
4
|
"description": "UI for integrations in neeto products",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-integrations-nano",
|
|
@@ -29,11 +29,14 @@
|
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "NODE_ENV=production rollup -c --environment production",
|
|
32
|
+
"build-preview": "NODE_ENV=production webpack",
|
|
32
33
|
"prepare": "husky install",
|
|
33
|
-
"release": "yarn build && yalc push --sig"
|
|
34
|
-
"build-preview": "NODE_ENV=production webpack"
|
|
34
|
+
"release": "yarn build && yalc push --sig"
|
|
35
35
|
},
|
|
36
36
|
"lint-staged": {
|
|
37
|
+
"./**/*.rb": [
|
|
38
|
+
"bundle exec rubocop -a --force-exclusion"
|
|
39
|
+
],
|
|
37
40
|
"./**/app/javascript/**/*.{js,jsx,json}": [
|
|
38
41
|
"prettier --write",
|
|
39
42
|
"eslint --fix"
|
|
@@ -42,43 +45,42 @@
|
|
|
42
45
|
"prettier --write",
|
|
43
46
|
"eslint --fix"
|
|
44
47
|
],
|
|
45
|
-
"./**/*.rb": [
|
|
46
|
-
"bundle exec rubocop -a --force-exclusion"
|
|
47
|
-
],
|
|
48
48
|
"{Gemfile,Rakefile,config.ru}": [
|
|
49
49
|
"bundle exec rubocop -a --force-exclusion"
|
|
50
50
|
]
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@babel/core": "7.
|
|
54
|
-
"@babel/eslint-parser": "7.22.
|
|
55
|
-
"@babel/plugin-transform-runtime": "7.
|
|
56
|
-
"@babel/preset-env": "7.
|
|
57
|
-
"@babel/preset-react": "7.22.
|
|
58
|
-
"@babel/preset-typescript": "7.
|
|
59
|
-
"@babel/runtime": "7.
|
|
60
|
-
"@bigbinary/babel-preset-neeto": "
|
|
61
|
-
"@bigbinary/eslint-plugin-neeto": "1.1.
|
|
62
|
-
"@bigbinary/neeto-audit-frontend": "
|
|
63
|
-
"@bigbinary/neeto-cist": "
|
|
64
|
-
"@bigbinary/neeto-commons-frontend": "
|
|
65
|
-
"@bigbinary/neeto-
|
|
66
|
-
"@bigbinary/neeto-
|
|
67
|
-
"@bigbinary/
|
|
53
|
+
"@babel/core": "7.23.2",
|
|
54
|
+
"@babel/eslint-parser": "7.22.15",
|
|
55
|
+
"@babel/plugin-transform-runtime": "7.23.2",
|
|
56
|
+
"@babel/preset-env": "7.23.2",
|
|
57
|
+
"@babel/preset-react": "7.22.15",
|
|
58
|
+
"@babel/preset-typescript": "7.23.2",
|
|
59
|
+
"@babel/runtime": "7.23.2",
|
|
60
|
+
"@bigbinary/babel-preset-neeto": "1.0.6",
|
|
61
|
+
"@bigbinary/eslint-plugin-neeto": "1.1.39",
|
|
62
|
+
"@bigbinary/neeto-audit-frontend": "2.0.7",
|
|
63
|
+
"@bigbinary/neeto-cist": "1.0.7",
|
|
64
|
+
"@bigbinary/neeto-commons-frontend": "3.1.3",
|
|
65
|
+
"@bigbinary/neeto-filters-frontend": "3.0.14",
|
|
66
|
+
"@bigbinary/neeto-icons": "1.17.9",
|
|
67
|
+
"@bigbinary/neeto-molecules": "1.3.15",
|
|
68
|
+
"@bigbinary/neetoui": "6.1.2",
|
|
68
69
|
"@emotion/is-prop-valid": "1.2.0",
|
|
69
|
-
"@faker-js/faker": "8.0
|
|
70
|
-
"@honeybadger-io/
|
|
71
|
-
"@
|
|
72
|
-
"@rollup/plugin-
|
|
73
|
-
"@rollup/plugin-
|
|
74
|
-
"@rollup/plugin-
|
|
75
|
-
"@rollup/plugin-
|
|
76
|
-
"@rollup/plugin-
|
|
77
|
-
"@
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
70
|
+
"@faker-js/faker": "8.2.0",
|
|
71
|
+
"@honeybadger-io/js": "6.5.3",
|
|
72
|
+
"@honeybadger-io/react": "6.1.9",
|
|
73
|
+
"@rollup/plugin-alias": "5.0.1",
|
|
74
|
+
"@rollup/plugin-babel": "6.0.4",
|
|
75
|
+
"@rollup/plugin-commonjs": "25.0.7",
|
|
76
|
+
"@rollup/plugin-json": "6.0.1",
|
|
77
|
+
"@rollup/plugin-node-resolve": "15.2.3",
|
|
78
|
+
"@rollup/plugin-replace": "5.0.4",
|
|
79
|
+
"@svgr/rollup": "8.1.0",
|
|
80
|
+
"antd": "5.10.2",
|
|
81
|
+
"autoprefixer": "10.4.16",
|
|
82
|
+
"axios": "1.6.0",
|
|
83
|
+
"babel-loader": "9.1.3",
|
|
82
84
|
"babel-plugin-istanbul": "6.1.1",
|
|
83
85
|
"babel-plugin-js-logger": "1.0.17",
|
|
84
86
|
"babel-plugin-macros": "3.1.0",
|
|
@@ -93,28 +95,28 @@
|
|
|
93
95
|
"css-loader": "6.8.1",
|
|
94
96
|
"dompurify": "3.0.2",
|
|
95
97
|
"dotenv-webpack": "^8.0.1",
|
|
96
|
-
"eslint": "8.
|
|
97
|
-
"eslint-config-prettier": "8.
|
|
98
|
-
"eslint-plugin-cypress": "2.
|
|
99
|
-
"eslint-plugin-import": "2.
|
|
98
|
+
"eslint": "8.52.0",
|
|
99
|
+
"eslint-config-prettier": "8.5.0",
|
|
100
|
+
"eslint-plugin-cypress": "2.15.1",
|
|
101
|
+
"eslint-plugin-import": "2.29.0",
|
|
100
102
|
"eslint-plugin-jam3": "0.2.3",
|
|
101
103
|
"eslint-plugin-json": "3.1.0",
|
|
102
|
-
"eslint-plugin-prettier": "4.
|
|
104
|
+
"eslint-plugin-prettier": "4.0.0",
|
|
103
105
|
"eslint-plugin-promise": "6.1.1",
|
|
104
|
-
"eslint-plugin-react": "7.
|
|
106
|
+
"eslint-plugin-react": "7.33.2",
|
|
105
107
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
106
108
|
"eslint-plugin-security": "^1.7.1",
|
|
107
109
|
"eslint-plugin-sonarjs": "^0.21.0",
|
|
108
|
-
"eslint-plugin-unused-imports": "
|
|
110
|
+
"eslint-plugin-unused-imports": "3.0.0",
|
|
109
111
|
"eslint-plugin-xss": "^0.1.12",
|
|
110
|
-
"formik": "2.4.
|
|
112
|
+
"formik": "2.4.5",
|
|
111
113
|
"html-webpack-plugin": "5.5.3",
|
|
112
114
|
"https-browserify": "1.0.0",
|
|
113
115
|
"husky": "8.0.3",
|
|
114
|
-
"i18next": "23.
|
|
116
|
+
"i18next": "23.6.0",
|
|
115
117
|
"i18next-browser-languagedetector": "7.0.1",
|
|
116
118
|
"js-logger": "1.6.1",
|
|
117
|
-
"lint-staged": "
|
|
119
|
+
"lint-staged": "15.0.2",
|
|
118
120
|
"mini-css-extract-plugin": "2.7.6",
|
|
119
121
|
"mixpanel-browser": "2.47.0",
|
|
120
122
|
"os-browserify": "0.3.0",
|
|
@@ -122,18 +124,19 @@
|
|
|
122
124
|
"postcss": "8.4.31",
|
|
123
125
|
"postcss-import": "15.1.0",
|
|
124
126
|
"postcss-loader": "7.3.3",
|
|
125
|
-
"postcss-preset-env": "9.
|
|
126
|
-
"prettier": "2.
|
|
127
|
-
"prettier-plugin-tailwindcss": "0.
|
|
127
|
+
"postcss-preset-env": "9.2.0",
|
|
128
|
+
"prettier": "2.6.2",
|
|
129
|
+
"prettier-plugin-tailwindcss": "0.1.10",
|
|
128
130
|
"process": "0.11.10",
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"react
|
|
131
|
+
"qs": "6.11.2",
|
|
132
|
+
"ramda": "0.29.1",
|
|
133
|
+
"react": "18.2.0",
|
|
134
|
+
"react-dom": "18.2.0",
|
|
132
135
|
"react-helmet": "6.1.0",
|
|
133
|
-
"react-i18next": "13.
|
|
136
|
+
"react-i18next": "13.3.1",
|
|
134
137
|
"react-query": "3.39.3",
|
|
135
|
-
"react-router-dom": "5.3.
|
|
136
|
-
"react-toastify": "8.0
|
|
138
|
+
"react-router-dom": "5.3.4",
|
|
139
|
+
"react-toastify": "8.2.0",
|
|
137
140
|
"react-transition-group": "4.4.5",
|
|
138
141
|
"react_ujs": "^3.1.1",
|
|
139
142
|
"rollup": "2.79.1",
|
|
@@ -141,7 +144,7 @@
|
|
|
141
144
|
"rollup-plugin-cleaner": "1.0.0",
|
|
142
145
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
143
146
|
"rollup-plugin-styles": "4.0.0",
|
|
144
|
-
"sass": "1.
|
|
147
|
+
"sass": "1.69.5",
|
|
145
148
|
"sass-loader": "13.3.2",
|
|
146
149
|
"shakapacker": "6.6.0",
|
|
147
150
|
"stream-browserify": "3.0.0",
|
|
@@ -156,29 +159,31 @@
|
|
|
156
159
|
"webpack-assets-manifest": "5.1.0",
|
|
157
160
|
"webpack-cli": "5.1.4",
|
|
158
161
|
"webpack-dev-server": "4.15.1",
|
|
159
|
-
"yup": "
|
|
162
|
+
"yup": "1.3.2"
|
|
160
163
|
},
|
|
161
164
|
"peerDependencies": {
|
|
162
165
|
"@bigbinary/neeto-cist": "latest",
|
|
163
|
-
"@bigbinary/neeto-commons-frontend": "
|
|
164
|
-
"@bigbinary/neeto-
|
|
165
|
-
"@bigbinary/neeto-
|
|
166
|
-
"@bigbinary/
|
|
167
|
-
"@
|
|
168
|
-
"
|
|
166
|
+
"@bigbinary/neeto-commons-frontend": "3.1.3",
|
|
167
|
+
"@bigbinary/neeto-filters-frontend": "3.0.14",
|
|
168
|
+
"@bigbinary/neeto-icons": "1.17.9",
|
|
169
|
+
"@bigbinary/neeto-molecules": "1.3.15",
|
|
170
|
+
"@bigbinary/neetoui": "6.1.2",
|
|
171
|
+
"@honeybadger-io/js": "^6.5.3",
|
|
172
|
+
"@honeybadger-io/react": "^6.1.9",
|
|
173
|
+
"axios": "^1.6.0",
|
|
169
174
|
"classnames": "^2.3.2",
|
|
170
|
-
"formik": "^2.
|
|
171
|
-
"i18next": "23.
|
|
175
|
+
"formik": "^2.4.5",
|
|
176
|
+
"i18next": "^23.6.0",
|
|
172
177
|
"js-logger": "^1.6.1",
|
|
173
178
|
"mixpanel-browser": "^2.45.0",
|
|
174
|
-
"ramda": "^0.29.
|
|
175
|
-
"react": "18.2.0",
|
|
176
|
-
"react-dom": "18.2.0",
|
|
179
|
+
"ramda": "^0.29.1",
|
|
180
|
+
"react": "^18.2.0",
|
|
181
|
+
"react-dom": "^18.2.0",
|
|
177
182
|
"react-helmet": "^6.1.0",
|
|
178
|
-
"react-i18next": "13.
|
|
179
|
-
"react-query": "3.39.
|
|
180
|
-
"react-router-dom": "5.3.
|
|
181
|
-
"react-toastify": "8.2.0",
|
|
183
|
+
"react-i18next": "^13.3.1",
|
|
184
|
+
"react-query": "^3.39.3",
|
|
185
|
+
"react-router-dom": "^5.3.4",
|
|
186
|
+
"react-toastify": "^8.2.0",
|
|
182
187
|
"yup": "^0.32.11",
|
|
183
188
|
"zustand": "4.3.2"
|
|
184
189
|
},
|