-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.28 KB
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
88
89
90
{
"private": true,
"scripts": {
"start": "webpack-dev-server --inline --hot --config=webpack/webpack.dev.config.js",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack/webpack.dev.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=webpack.dev.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@hot-loader/react-dom": "^16.9.0",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-router-dom": "^4.3.5",
"@types/redux-devtools": "^3.0.47",
"@types/redux-devtools-dock-monitor": "^1.1.33",
"@types/redux-devtools-log-monitor": "^1.0.34",
"@types/webpack-dev-server": "^3.1.7",
"bootstrap": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.1",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"jquery": "^3.2",
"laravel-mix": "^4.0.7",
"popper.js": "^1.12",
"react-hot-loader": "^4.12.12",
"redux-devtools": "^3.5.0",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-promise-middleware": "^6.1.1",
"resolve-url-loader": "^2.3.1",
"sass": "^1.15.2",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"@material-ui/core": "4.5.1",
"@material-ui/icons": "4.5.1",
"@types/jest": "24.0.18",
"@types/lodash": "^4.14.138",
"@types/react-dom": "16.9.0",
"@types/react-redux": "^7.1.2",
"@types/webpack": "^4.39.1",
"antd": "^3.23.2",
"axios": "^0.19.0",
"base-href-webpack-plugin": "^2.0.0",
"clsx": "^1.0.4",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.1",
"react-redux-loading-bar": "^4.4.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"react-toastify": "^5.3.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.20.0",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}