chem-generic-ui 0.2.2 → 0.2.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/dist/bundle.js +1 -1
- package/dist/bundle.js.map +1 -1
- package/package.json +22 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chem-generic-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"main": "./dist/bundle.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
"eject": "react-scripts eject"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
+
"@fortawesome/fontawesome-svg-core": "^6.1.0",
|
|
28
|
+
"@fortawesome/free-regular-svg-icons": "^6.1.0",
|
|
29
|
+
"@fortawesome/free-solid-svg-icons": "^6.1.0",
|
|
30
|
+
"@fortawesome/react-fontawesome": "^0.1.18",
|
|
27
31
|
"lodash": "^4.17.21",
|
|
28
32
|
"numeral": "^1.5.3",
|
|
29
33
|
"prop-types": "^15.8.1",
|
|
@@ -37,40 +41,38 @@
|
|
|
37
41
|
"redux": "^4.1.0",
|
|
38
42
|
"redux-immutable": "^4.0.0",
|
|
39
43
|
"redux-thunk": "^2.0.0",
|
|
40
|
-
"uuid": "^8.3.2"
|
|
41
|
-
"@fortawesome/fontawesome-svg-core": "^6.1.0",
|
|
42
|
-
"@fortawesome/free-regular-svg-icons": "^6.1.0",
|
|
43
|
-
"@fortawesome/free-solid-svg-icons": "^6.1.0",
|
|
44
|
-
"@fortawesome/react-fontawesome": "^0.1.18"
|
|
44
|
+
"uuid": "^8.3.2"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"react": "^17.0.2",
|
|
48
48
|
"react-dom": "^17.0.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"react-hot-loader": "^4.13.0",
|
|
52
|
-
"@babel/eslint-parser": "^7.15.0",
|
|
53
|
-
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
54
|
-
"eslint-config-airbnb": "^16.1.0",
|
|
55
|
-
"eslint-plugin-import": "^2.8.0",
|
|
56
|
-
"eslint-plugin-jsx-a11y": "^6.0.2",
|
|
57
|
-
"eslint-plugin-react": "^7.4.0",
|
|
58
|
-
"eslint-plugin-react-hooks": "^4.3.0",
|
|
59
|
-
"postcss": "^8.4.8",
|
|
60
|
-
"postcss-cli": "^9.1.0",
|
|
61
|
-
"postcss-nested": "^5.0.6",
|
|
62
|
-
"redux-logger": "^3.0.6",
|
|
63
|
-
"react": "^17.0.2",
|
|
64
|
-
"react-dom": "^17.0.2",
|
|
65
51
|
"@babel/cli": "^7.17.6",
|
|
66
52
|
"@babel/core": "^7.17.8",
|
|
53
|
+
"@babel/eslint-parser": "^7.15.0",
|
|
54
|
+
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
67
55
|
"@babel/preset-env": "^7.16.11",
|
|
68
56
|
"@babel/preset-react": "^7.16.7",
|
|
69
57
|
"babel-loader": "^8.2.3",
|
|
70
58
|
"css-loader": "^6.7.1",
|
|
59
|
+
"eslint": "7.32.0",
|
|
60
|
+
"eslint-config-airbnb": "^18.2.1",
|
|
61
|
+
"eslint-plugin-import": "^2.25.4",
|
|
62
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
63
|
+
"eslint-plugin-react": "^7.4.0",
|
|
64
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
65
|
+
"postcss": "^8.4.8",
|
|
66
|
+
"postcss-cli": "^9.1.0",
|
|
71
67
|
"postcss-loader": "^6.2.1",
|
|
68
|
+
"postcss-nested": "^5.0.6",
|
|
72
69
|
"postcss-preset-env": "^7.4.3",
|
|
70
|
+
"react": "^17.0.2",
|
|
73
71
|
"react-bootstrap": "~0.33.1",
|
|
72
|
+
"react-codemod": "^5.4.3",
|
|
73
|
+
"react-dom": "^17.0.2",
|
|
74
|
+
"react-hot-loader": "^4.13.0",
|
|
75
|
+
"redux-logger": "^3.0.6",
|
|
74
76
|
"sass": "^1.49.9",
|
|
75
77
|
"sass-loader": "^12.6.0",
|
|
76
78
|
"style-loader": "^3.3.1",
|
|
@@ -82,5 +84,4 @@
|
|
|
82
84
|
"browserslist": [
|
|
83
85
|
"defaults"
|
|
84
86
|
]
|
|
85
|
-
|
|
86
87
|
}
|