-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "wpwebpack5template",
"version": "1.0.0",
"description": "Wordpress Theme for Development with Webpack 5 Automation.",
"main": "src/js/index.js",
"scripts": {
"dev": "webpack serve --config ./webpack/dev.config.js --mode development --hot",
"build": "webpack --config ./webpack/build.config.js --mode production",
"zip": "webpack --config ./webpack/zipping.config.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitmasz/WPWebpack5Template.git"
},
"keywords": [
"webpack",
"wordpress",
"template"
],
"author": "Marcin Szczepkowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/gitmasz/WPWebpack5Template/issues"
},
"homepage": "https://github.com/gitmasz/WPWebpack5Template#readme",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.0",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-promise": "^6.1.1",
"image-minimizer-webpack-plugin": "^4.0.0",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"imagemin-webp": "^8.0.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss-loader": "^8.1.1",
"remove-files-webpack-plugin": "^1.5.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0",
"zip-webpack-plugin": "^4.0.1"
}
}