-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.08 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.08 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
{
"name": "webpack-builds",
"version": "1.0.0",
"description": "webpack build environments",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kyehuelin/webpack.git"
},
"author": "Kye Huelin",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyehuelin/webpack/issues"
},
"homepage": "https://github.com/kyehuelin/webpack#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@svgr/webpack": "^4.1.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.4",
"babel-plugin-annotate-console-log": "^1.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"error-overlay-webpack-plugin": "^0.1.5",
"extract-css-chunks-webpack-plugin": "^3.2.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.10.0",
"nodemon": "^1.18.6",
"postcss-loader": "^3.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4",
"webpack-visualizer-plugin": "^0.1.11"
},
"scripts": {
"build": "webpack --env.mode production --config ./config/webpack.config.js",
"watch": "webpack --env.mode production --watch --config ./config/webpack.config.js",
"start": "webpack-dev-server --env.mode development --host localhost --port 5000 --config ./config/webpack.config.js",
"webpack": "nodemon --watch ./config/webpack.config.js --exec \"webpack-dev-server --env.mode production --config ./config/webpack.config.js\""
},
"dependencies": {
"express": "^4.16.4",
"google-fonts-webpack-plugin": "^0.4.4",
"path": "^0.12.7"
}
}