-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"private": true,
"main": "webpack.config.js",
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.1",
"cypress": "^5.6.0",
"debug": "^4.3.1",
"deep-freeze-node": "^1.1.3",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^3.0.1",
"font-face-mixin": "^1.1.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"precss": "^3.1.2",
"react-hot-loader": "^4.13.0",
"sass-loader": "^7.3.1",
"source-map-explorer": "^1.8.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.4.5",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.3",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@fortawesome/fontawesome-pro": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/pro-duotone-svg-icons": "^5.15.3",
"@fortawesome/pro-light-svg-icons": "^5.15.3",
"@fortawesome/pro-regular-svg-icons": "^5.15.3",
"@fortawesome/pro-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"animate.css": "^3.7.2",
"axios": "^0.21.2",
"bootstrap": "^4.6.0",
"connected-react-router": "^6.9.1",
"fine-uploader": "^5.16.2",
"fine-uploader-wrappers": "latest",
"history": "^4.10.1",
"immutable": "^4.0.0-rc.12",
"interweave": "^12.7.1",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"normalizr": "^3.6.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-fine-uploader": "^1.1.1",
"react-loadable": "^5.5.0",
"react-notifications-component": "^1.1.1",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-select": "^3.2.0",
"react-uuid": "^1.0.2",
"redux": "^4.0.5",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"scripts": {
"analyze": "source-map-explorer --html 'public/build/*.js' > source-map-explorer-tree.html",
"build": "webpack --colors || true",
"compile": "webpack --colors --display-cached --display-cached-assets --display-error-details --display-modules --display-chunks --debug || true",
"watch": "webpack --watch --colors || true"
}
}