chem-generic-ui 0.1.49 → 0.2.1
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 +3 -25
- package/dist/bundle.js.LICENSE.txt +37 -0
- package/dist/bundle.js.map +1 -0
- package/package.json +59 -48
package/package.json
CHANGED
|
@@ -1,75 +1,86 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chem-generic-ui",
|
|
3
|
-
"version": "0.1
|
|
4
|
-
"
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"main": "./dist/bundle.js",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"private": false,
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
6
11
|
"scripts": {
|
|
7
|
-
"start": "
|
|
8
|
-
"build": "
|
|
12
|
+
"start": "webpack-dev-server --config ./webpack.dev.js",
|
|
13
|
+
"build": "webpack --config ./webpack.config.js",
|
|
14
|
+
"rbuild": "rm -rf dist && rollup -c --environment NODE_ENV:production && postcss src/asserts/*.css --dir dist",
|
|
15
|
+
"rstart": "rm -rf dist && rollup -c rollup.config.js -w",
|
|
16
|
+
"start-rs": "react-scripts start",
|
|
17
|
+
"build-rs": "react-scripts build",
|
|
18
|
+
"compile-t": "rm -rf dist && set NODE_ENV=production && babel src --out-dir dist --copy-files --ignore spec.js,test.js --source-maps",
|
|
9
19
|
"compile": "rm -rf dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files",
|
|
20
|
+
"build:bundle": "webpack --config webpack.config.js",
|
|
10
21
|
"build-css": "node-sass src/asserts/ -o dist",
|
|
11
|
-
"build-webpack": "react-scripts build && webpack --config webpack.config.js",
|
|
12
22
|
"sass": "sass src/asserts:src/asserts --watch --no-source-map",
|
|
13
23
|
"test": "react-scripts test --env=jsdom --testPathIgnorePatterns=src/__tests__/helper/* src/__tests__/e2e/*",
|
|
14
24
|
"eject": "react-scripts eject"
|
|
15
25
|
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"lodash": "^4.17.21",
|
|
28
|
+
"numeral": "^1.5.3",
|
|
29
|
+
"prop-types": "^15.8.1",
|
|
30
|
+
"react-dnd": "^2.6.0",
|
|
31
|
+
"react-dnd-html5-backend": "^2.6.0",
|
|
32
|
+
"react-draggable": "^4.4.3",
|
|
33
|
+
"react-dropzone": "^3.6.0",
|
|
34
|
+
"react-flow-renderer": "^9.6.4",
|
|
35
|
+
"react-redux": "^7.2.4",
|
|
36
|
+
"react-select": "5.2.2",
|
|
37
|
+
"redux": "^4.1.0",
|
|
38
|
+
"redux-immutable": "^4.0.0",
|
|
39
|
+
"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"
|
|
45
|
+
},
|
|
16
46
|
"peerDependencies": {
|
|
17
47
|
"react": "^17.0.2",
|
|
18
48
|
"react-dom": "^17.0.2"
|
|
19
49
|
},
|
|
20
50
|
"devDependencies": {
|
|
51
|
+
"react-hot-loader": "^4.13.0",
|
|
52
|
+
"@babel/eslint-parser": "^7.15.0",
|
|
21
53
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
22
54
|
"eslint-config-airbnb": "^16.1.0",
|
|
23
55
|
"eslint-plugin-import": "^2.8.0",
|
|
24
56
|
"eslint-plugin-jsx-a11y": "^6.0.2",
|
|
25
57
|
"eslint-plugin-react": "^7.4.0",
|
|
26
58
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
27
|
-
"
|
|
59
|
+
"postcss": "^8.4.8",
|
|
60
|
+
"postcss-cli": "^9.1.0",
|
|
61
|
+
"postcss-nested": "^5.0.6",
|
|
28
62
|
"redux-logger": "^3.0.6",
|
|
63
|
+
"react": "^17.0.2",
|
|
64
|
+
"react-dom": "^17.0.2",
|
|
65
|
+
"@babel/cli": "^7.17.6",
|
|
66
|
+
"@babel/core": "^7.17.8",
|
|
67
|
+
"@babel/preset-env": "^7.16.11",
|
|
68
|
+
"@babel/preset-react": "^7.16.7",
|
|
69
|
+
"babel-loader": "^8.2.3",
|
|
70
|
+
"css-loader": "^6.7.1",
|
|
71
|
+
"postcss-loader": "^6.2.1",
|
|
72
|
+
"postcss-preset-env": "^7.4.3",
|
|
73
|
+
"react-bootstrap": "~0.33.1",
|
|
74
|
+
"sass": "^1.49.9",
|
|
75
|
+
"sass-loader": "^12.6.0",
|
|
76
|
+
"style-loader": "^3.3.1",
|
|
29
77
|
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
30
|
-
"webpack
|
|
78
|
+
"webpack": "^5.70.0",
|
|
79
|
+
"webpack-cli": "^4.9.2",
|
|
80
|
+
"webpack-dev-server": "^4.7.4"
|
|
31
81
|
},
|
|
32
|
-
"main": "dist/bundle.js",
|
|
33
|
-
"module": "dist/bundle.js",
|
|
34
|
-
"files": [
|
|
35
|
-
"dist",
|
|
36
|
-
"README.md"
|
|
37
|
-
],
|
|
38
82
|
"browserslist": [
|
|
39
83
|
"defaults"
|
|
40
|
-
]
|
|
41
|
-
|
|
42
|
-
"@babel/cli": "^7.0.0",
|
|
43
|
-
"@babel/core": "^7.0.0",
|
|
44
|
-
"@babel/eslint-parser": "^7.15.0",
|
|
45
|
-
"@babel/preset-env": "7.3.1",
|
|
46
|
-
"@babel/preset-react": "7.0.0",
|
|
47
|
-
"@fortawesome/fontawesome-svg-core": "^1.3.0",
|
|
48
|
-
"@fortawesome/free-brands-svg-icons": "^6.0.0",
|
|
49
|
-
"@fortawesome/free-regular-svg-icons": "^6.0.0",
|
|
50
|
-
"@fortawesome/free-solid-svg-icons": "^6.0.0",
|
|
51
|
-
"@fortawesome/react-fontawesome": "^0.1.17",
|
|
52
|
-
"css-loader": "4.3.0",
|
|
53
|
-
"glob": "^7.2.0",
|
|
54
|
-
"lodash": "^4.17.21",
|
|
55
|
-
"mini-css-extract-plugin": "0.11.3",
|
|
56
|
-
"numeral": "^1.5.3",
|
|
57
|
-
"prop-types": "^15.8.1",
|
|
58
|
-
"react": "^17.0.2",
|
|
59
|
-
"react-bootstrap": "~0.33.1",
|
|
60
|
-
"react-dnd": "^2.6.0",
|
|
61
|
-
"react-dnd-html5-backend": "^2.6.0",
|
|
62
|
-
"react-dom": "^17.0.2",
|
|
63
|
-
"react-draggable": "^4.4.3",
|
|
64
|
-
"react-dropzone": "^3.6.0",
|
|
65
|
-
"react-flow-renderer": "^9.6.4",
|
|
66
|
-
"react-redux": "^7.2.4",
|
|
67
|
-
"react-select": "5.2.2",
|
|
68
|
-
"redux": "^4.1.0",
|
|
69
|
-
"redux-immutable": "^4.0.0",
|
|
70
|
-
"redux-thunk": "^2.0.0",
|
|
71
|
-
"sass": "^1.49.9",
|
|
72
|
-
"sass-loader": "8.0.2",
|
|
73
|
-
"uuid": "^8.3.2"
|
|
74
|
-
}
|
|
84
|
+
]
|
|
85
|
+
|
|
75
86
|
}
|