-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "webpack-demo",
"sideEffects": [
"*.css"
],
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"start": "http-server dist",
"dev": "webpack-dev-server --config ./build/webpack.dev.js",
"build": "webpack --env.production --config ./build/webpack.prod.js",
"middleware": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-eslint": "^10.0.3",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.3.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-react": "^7.14.3",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"webpack-merge": "^4.2.2"
}
}