-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 1.87 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
62
63
64
65
66
67
68
69
{
"name": "webpack-config",
"description": "This is my Webpack 4 configuration for static projects.",
"version": "1.3.0",
"private": true,
"author": {
"name": "Nenad Novaković",
"email": "n.dvlden@gmail.com",
"url": "https://github.com/dvlden"
},
"license": "MIT",
"scripts": {
"serve": "webpack-dev-server --progress --hide-modules --mode development",
"watch": "webpack --watch",
"build": "webpack --progress --hide-modules --mode production"
},
"homepage": "https://github.com/dvlden/webpack-config#readme",
"bugs": "https://github.com/dvlden/webpack-config/issues",
"repository": {
"type": "git",
"url": "https://github.com/dvlden/webpack-config.git"
},
"keywords": [
"webpack",
"webpack 4",
"configuration",
"config"
],
"browserslist": [
"last 1 major version",
"> 1%"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"fibers": "^4.0.1",
"file-loader": "^4.1.0",
"html-loader": "^0.5.5",
"image-webpack-loader": "^5.0.0",
"jsonminify": "^0.4.1",
"mini-css-extract-plugin": "^0.7.0",
"postcss-loader": "^3.0.0",
"sass": "^1.22.8",
"sass-loader": "^7.1.0",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.1",
"webpack-subresource-integrity": "^1.3.2",
"webpackbar": "^3.2.0"
},
"dependencies": {
"admin-lte": "^2.4.15",
"bootstrap": "^3.3.4",
"bootstrap-select": "^1.13.10",
"dropzone": "^5.5.1",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"jquery-validation": "^1.19.1",
"shave": "^2.5.4",
"slick-carousel": "^1.8.1"
}
}