-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.68 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
{
"name": "gallery",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:prod": "webpack --config webpack/webpack.prod.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack/webpack.dev.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:stat": "webpack --config webpack/webpack.prod.js --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer stats.json",
"start": "cross-env NODE_ENV=development node server.js"
},
"author": "nguyendz",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@reduxjs/toolkit": "^1.4.0",
"axios": "^0.20.0",
"cross-env": "^7.0.2",
"lodash-es": "^4.17.15",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intl": "^5.8.4",
"react-redux": "^7.2.1",
"react-scripts": "3.4.3",
"react-toastify": "^6.0.8",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@babel/plugin-transform-react-constant-elements": "7.10.4",
"@babel/plugin-transform-react-inline-elements": "7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/polyfill": "7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/register": "7.11.5",
"@babel/runtime": "^7.11.2",
"babel-eslint": "10.1.0",
"babel-loader": "^8.1.0",
"circular-dependency-plugin": "^5.2.0",
"compression-webpack-plugin": "^6.0.2",
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"express": "^4.17.1",
"file-loader": "^6.1.0",
"html-loader": "^1.3.1",
"html-webpack-plugin": "^4.5.0",
"image-webpack-loader": "^7.0.1",
"imports-loader": "^1.1.0",
"jest-cli": "^26.4.2",
"jest-dom": "^4.0.0",
"prettier": "^2.1.2",
"react-app-polyfill": "^1.0.6",
"react-test-renderer": "^16.13.1",
"react-testing-library": "^8.0.1",
"rimraf": "^3.0.2",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"svg-url-loader": "^6.0.0",
"terser-webpack-plugin": "^4.2.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-pwa-manifest": "^4.2.0"
}
}