-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"authors": [
{
"homepage": "https://www.bobz.co",
"name": "Vlado Bosnjak",
"email": "[email protected]"
},
{
"homepage": "https://www.codesoup.co",
"name": "Code Soup",
"email": "[email protected]"
}
],
"browserslist": [
"> 1%",
"last 3 versions",
"android 4",
"safari 10",
"not ie <= 8"
],
"scripts": {
"start": "webpack serve --mode development --color --config src/webpack/config.webpack.js",
"build": "webpack --mode development --progress --config src/webpack/config.webpack.js",
"build:prod": "webpack --mode production --progress --config src/webpack/config.webpack.js",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint src/scripts src/webpack",
"lint:styles": "stylelint \"src/styles/**/*.{css,sass,scss}\"",
"reinit": "rimraf dist && rimraf node_modules && yarn",
"clean": "rimraf dist"
},
"bugs": {
"url": "https://github.com/code-soup/webpack-php-boilerplate/issues"
},
"engines": {
"node": ">= 12.16.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"babel-loader": "^8.2.2",
"breakpoint-sass": "^2.7.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.2.0",
"cssnano": "^5.0.7",
"dart-sass": "^1.25.0",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"eslint-webpack-plugin": "^3.0.1",
"image-minimizer-webpack-plugin": "^2.2.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"import-glob": "^1.5.0",
"jquery": "^3.6.0",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"resolve-url-loader": "^4.0.0",
"rimraf": "^3.0.2",
"sass": "^1.36.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-property-sort-order-smacss": "^7.1.0",
"stylelint-order": "^4.1.0",
"stylelint-webpack-plugin": "^3.0.1",
"svg-spritemap-webpack-plugin": "^4.1.0",
"webpack": "^5.47.0",
"webpack-assets-manifest": "^5.0.6",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"yargs": "~17.0.1"
},
"name": "webpack-php-boilerplate",
"version": "1.0.0",
"license": "GPL-3.0",
"keywords": [
"webpack",
"webpack boilerplate",
"webpack5 boilerplate",
"webpack5 zero-config boilerplate"
],
"description": "Webpack drop-in boilerplate for PHP and HTML",
"repository": {
"type": "git",
"url": "https://github.com/code-soup/webpack-php-boilerplate.git"
},
"dependencies": {}
}