@bigbinary/neeto-team-members-frontend 2.5.19 → 2.5.21
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 +23 -7
- package/dist/index.cjs.js +27869 -2430
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +37887 -0
- package/dist/index.js.map +1 -0
- package/package.json +51 -49
- package/dist/index.esm.js +0 -12447
- package/dist/index.esm.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-team-members-frontend",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.21",
|
|
4
4
|
"description": "To manage team members across neeto products.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-team-members-frontend#readme",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"types.d.ts"
|
|
15
15
|
],
|
|
16
16
|
"main": "dist/index.cjs.js",
|
|
17
|
-
"module": "dist/index.
|
|
17
|
+
"module": "dist/index.js",
|
|
18
18
|
"types": "types.d.ts",
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "NODE_ENV=production rollup -c --environment production",
|
|
@@ -27,35 +27,23 @@
|
|
|
27
27
|
"{src,example}/**/*.{js,jsx,json}": [
|
|
28
28
|
"prettier --write",
|
|
29
29
|
"eslint --fix"
|
|
30
|
-
],
|
|
31
|
-
"{package.json,.eslintrc.js,.prettierrc.js}": [
|
|
32
|
-
"prettier --write",
|
|
33
|
-
"eslint --fix"
|
|
34
|
-
],
|
|
35
|
-
".eslint-rules/**/*": [
|
|
36
|
-
"prettier --write",
|
|
37
|
-
"eslint --fix"
|
|
38
30
|
]
|
|
39
31
|
},
|
|
40
32
|
"devDependencies": {
|
|
41
33
|
"@babel/core": "7.21.0",
|
|
42
34
|
"@babel/eslint-parser": "7.19.1",
|
|
43
|
-
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
44
|
-
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
|
|
45
|
-
"@babel/plugin-proposal-numeric-separator": "7.18.6",
|
|
46
|
-
"@babel/plugin-proposal-optional-chaining": "7.21.0",
|
|
47
35
|
"@babel/plugin-transform-runtime": "7.21.0",
|
|
48
36
|
"@babel/preset-env": "7.20.2",
|
|
49
37
|
"@babel/preset-react": "7.18.6",
|
|
38
|
+
"@babel/preset-typescript": "7.21.0",
|
|
50
39
|
"@babel/runtime": "7.21.0",
|
|
51
|
-
"@bigbinary/eslint-plugin-neeto": "1.0.
|
|
52
|
-
"@bigbinary/neeto-commons-frontend": "2.0.
|
|
53
|
-
"@bigbinary/neeto-filters-frontend": "2.
|
|
54
|
-
"@bigbinary/neeto-icons": "1.9.
|
|
55
|
-
"@bigbinary/neetoui": "4.
|
|
40
|
+
"@bigbinary/eslint-plugin-neeto": "1.0.23",
|
|
41
|
+
"@bigbinary/neeto-commons-frontend": "2.0.40",
|
|
42
|
+
"@bigbinary/neeto-filters-frontend": "2.7.3",
|
|
43
|
+
"@bigbinary/neeto-icons": "1.9.19",
|
|
44
|
+
"@bigbinary/neetoui": "4.4.5",
|
|
56
45
|
"@faker-js/faker": "7.6.0",
|
|
57
|
-
"@honeybadger-io/
|
|
58
|
-
"@honeybadger-io/react": "5.1.3",
|
|
46
|
+
"@honeybadger-io/react": "2.0.1",
|
|
59
47
|
"@rollup/plugin-alias": "4.0.3",
|
|
60
48
|
"@rollup/plugin-babel": "6.0.3",
|
|
61
49
|
"@rollup/plugin-commonjs": "24.0.1",
|
|
@@ -65,12 +53,20 @@
|
|
|
65
53
|
"@svgr/rollup": "6.5.1",
|
|
66
54
|
"@vitejs/plugin-react": "3.1.0",
|
|
67
55
|
"antd": "4.24.8",
|
|
68
|
-
"
|
|
56
|
+
"autoprefixer": "10.4.13",
|
|
57
|
+
"axios": "1.3.4",
|
|
58
|
+
"babel-loader": "8.2.5",
|
|
59
|
+
"babel-plugin-istanbul": "6.1.1",
|
|
60
|
+
"babel-plugin-js-logger": "1.0.17",
|
|
69
61
|
"babel-plugin-macros": "3.1.0",
|
|
62
|
+
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
|
|
63
|
+
"babel-preset-react": "6.24.1",
|
|
64
|
+
"babel-preset-typescript": "7.0.0-alpha.19",
|
|
70
65
|
"classnames": "2.3.2",
|
|
71
|
-
"dompurify": "3.0.
|
|
72
|
-
"eslint": "8.
|
|
73
|
-
"eslint-config-prettier": "8.
|
|
66
|
+
"dompurify": "3.0.1",
|
|
67
|
+
"eslint": "8.35.0",
|
|
68
|
+
"eslint-config-prettier": "8.7.0",
|
|
69
|
+
"eslint-plugin-cypress": "2.12.1",
|
|
74
70
|
"eslint-plugin-import": "2.27.5",
|
|
75
71
|
"eslint-plugin-jam3": "0.2.3",
|
|
76
72
|
"eslint-plugin-json": "3.1.0",
|
|
@@ -78,61 +74,67 @@
|
|
|
78
74
|
"eslint-plugin-promise": "6.1.1",
|
|
79
75
|
"eslint-plugin-react": "7.32.2",
|
|
80
76
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
81
|
-
"eslint-plugin-unicorn": "45.0.2",
|
|
82
77
|
"eslint-plugin-unused-imports": "2.0.0",
|
|
83
78
|
"formik": "2.2.9",
|
|
84
79
|
"husky": "8.0.3",
|
|
85
|
-
"i18next": "22.4.
|
|
80
|
+
"i18next": "22.4.11",
|
|
86
81
|
"i18next-browser-languagedetector": "7.0.1",
|
|
87
82
|
"js-logger": "1.6.1",
|
|
88
83
|
"json-server": "0.17.1",
|
|
89
|
-
"lint-staged": "
|
|
84
|
+
"lint-staged": "12.4.1",
|
|
90
85
|
"mixpanel-browser": "2.45.0",
|
|
91
86
|
"pluralize": "8.0.0",
|
|
87
|
+
"postcss": "8.4.17",
|
|
88
|
+
"postcss-import": "15.0.0",
|
|
89
|
+
"postcss-loader": "7.0.1",
|
|
90
|
+
"postcss-preset-env": "7.8.2",
|
|
92
91
|
"prettier": "2.8.4",
|
|
93
|
-
"
|
|
92
|
+
"prettier-plugin-tailwindcss": "0.2.4",
|
|
93
|
+
"qs": "6.11.1",
|
|
94
94
|
"ramda": "0.28.0",
|
|
95
95
|
"react": "17.0.2",
|
|
96
96
|
"react-dom": "17.0.2",
|
|
97
97
|
"react-helmet": "6.1.0",
|
|
98
|
-
"react-i18next": "12.
|
|
98
|
+
"react-i18next": "12.2.0",
|
|
99
99
|
"react-query": "3.39.3",
|
|
100
100
|
"react-router-dom": "5.3.4",
|
|
101
|
-
"react-router-nav-prompt": "0.4.1",
|
|
102
101
|
"react-scroll-sync": "0.11.0",
|
|
103
|
-
"react-toastify": "8.
|
|
104
|
-
"rollup": "2.79.1",
|
|
102
|
+
"react-toastify": "8.0.3",
|
|
103
|
+
"rollup": "2.79.1 ",
|
|
105
104
|
"rollup-plugin-analyzer": "4.0.0",
|
|
106
105
|
"rollup-plugin-cleaner": "1.0.0",
|
|
107
106
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
108
107
|
"rollup-plugin-styles": "4.0.0",
|
|
109
108
|
"sass": "1.58.3",
|
|
109
|
+
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
|
|
110
|
+
"util": "0.12.5",
|
|
110
111
|
"vite": "4.1.4",
|
|
111
|
-
"
|
|
112
|
+
"vite-plugin-inspect": "0.7.15",
|
|
113
|
+
"yup": "0.32.11"
|
|
112
114
|
},
|
|
113
115
|
"peerDependencies": {
|
|
114
|
-
"@bigbinary/neeto-commons-frontend": "2.0.
|
|
115
|
-
"@bigbinary/neeto-
|
|
116
|
-
"@bigbinary/
|
|
117
|
-
"@
|
|
118
|
-
"@honeybadger-io/react": "
|
|
119
|
-
"axios": "
|
|
120
|
-
"classnames": "2.3.
|
|
121
|
-
"formik": "2.2.9",
|
|
122
|
-
"js-logger": "1.6.1",
|
|
116
|
+
"@bigbinary/neeto-commons-frontend": "^2.0.40",
|
|
117
|
+
"@bigbinary/neeto-filters-frontend": "^2.7.0",
|
|
118
|
+
"@bigbinary/neeto-icons": "^1.9.12",
|
|
119
|
+
"@bigbinary/neetoui": "^4.4.0",
|
|
120
|
+
"@honeybadger-io/react": "^2.0.1",
|
|
121
|
+
"axios": "^0.27.2",
|
|
122
|
+
"classnames": "^2.3.1",
|
|
123
|
+
"formik": "^2.2.9",
|
|
124
|
+
"js-logger": "^1.6.1",
|
|
123
125
|
"mixpanel-browser": "^2.45.0",
|
|
124
|
-
"ramda": "0.28.0",
|
|
126
|
+
"ramda": "^0.28.0",
|
|
125
127
|
"react": "17.0.2",
|
|
126
128
|
"react-dom": "17.0.2",
|
|
127
|
-
"react-helmet": "6.1.0",
|
|
128
|
-
"react-query": "3.39.
|
|
129
|
-
"react-router-dom": "5.3.
|
|
129
|
+
"react-helmet": "^6.1.0",
|
|
130
|
+
"react-query": "3.39.2",
|
|
131
|
+
"react-router-dom": "5.3.0",
|
|
130
132
|
"react-toastify": "8.2.0",
|
|
131
|
-
"yup": "
|
|
133
|
+
"yup": "^0.32.11"
|
|
132
134
|
},
|
|
133
135
|
"engines": {
|
|
134
136
|
"node": ">=18.12",
|
|
135
|
-
"npm": ">=
|
|
137
|
+
"npm": ">=9",
|
|
136
138
|
"yarn": ">=1.22"
|
|
137
139
|
}
|
|
138
140
|
}
|