-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.5 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.5 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
{
"name": "webpack_starter",
"version": "1.0.0",
"description": "This is a Readme file.",
"main": "webpack.dev.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack/webpack.production.config.js",
"dev": "webpack-dev-server --config webpack/webpack.dev.config.js --hot",
"lint": "eslint ."
},
"author": "fufukha",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"prop-types": "^15.7.2",
"redux-thunk": "^2.3.0",
"style-loader": "^0.23.1",
"webpack": "4.42.1",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"classnames": "^2.2.6",
"eslint-plugin-react-redux": "^3.0.1",
"lodash": "^4.17.21",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"reselect": "^4.0.0",
"reset-css": "^4.0.1"
}
}