-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "webpack4-quick",
"version": "1.0.0",
"description": "webpack v4.1.0 with bootstrap v4.0.0beta.0 and fontawesome v4.7.0",
"main": "webpack.config.js",
"scripts": {
"dev": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"build:prod": "webpack -p",
"watch": "webpack --watch"
},
"keywords": [
"webpack",
"quick",
"starter",
"pack",
"sass"
],
"author": "kangabbad",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^8.1.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.18",
"compression-webpack-plugin": "^1.1.10",
"css-loader": "^0.28.10",
"file-loader": "^1.1.11",
"font-awesome": "^4.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.4",
"image-webpack-loader": "^4.1.0",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.1",
"precss": "^3.1.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"url-loader": "^1.0.1",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"dependencies": {
"bootstrap": "^4.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jquery": "^3.3.1",
"popper.js": "^1.12.9"
}
}