-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"name": "webpack-split-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack",
"build": "webpack --env.mode=production",
"dev:local": "webpack-dev-server --env.mode=development --env.platform=local --hot --open",
"dev:web": "webpack-dev-server --env.mode=development --env.platform=web --hot --open",
"prod": "webpack --env.mode=production && node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"file-saver": "^2.0.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-minifier": "^3.5.21",
"html-webpack-inline-source-plugin": "1.0.0-beta.2",
"html-webpack-plugin": "^4.0.0-beta.5",
"mini-css-extract-plugin": "^0.5.0",
"nodemon": "^1.18.9",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"path": "^0.12.7",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}