This repository has been archived by the owner on Oct 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.26 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "eleventy-webpack-boilerplate",
"version": "1.0.0",
"description": "Workflow to use with 11ty and Webpack to bundle assets.",
"main": "src/assets/js/main.js",
"scripts": {
"clean": "rimraf public",
"serve:webpack": "webpack --watch",
"serve:eleventy": "eleventy --serve --config=eleventy.js",
"serve": "APP_ENV=development npm-run-all clean --parallel serve:* --silent",
"optimize:images": "node .imageminrc",
"optimize:precompress": "sh .precompress.sh",
"optimize": "run-s optimize:*",
"lint:css": "stylelint src/**/*.scss",
"lint:js": "eslint src/**/*.js",
"lint": "run-s lint:*",
"build:webpack": "webpack",
"build:eleventy": "eleventy --config=eleventy.js",
"build": "APP_ENV=production run-s clean build:* optimize:* --silent"
},
"engines": {
"node": ">=12.18"
},
"keywords": [
"eleventy",
"webpack",
"stylelint",
"eslint",
"imagemin",
"postcss",
"posthtml",
"babel",
"static"
],
"author": "Benjamin Dos Santos",
"contributors": [
{
"name": "Benjamin Dos Santos",
"email": "dosbenjamin@gmail.com",
"url": "https://benjamindossantos.be"
}
],
"license": "SEE LICENSE IN UNLICENSE",
"homepage": "https://github.com/dosbenjamin/eleventy-webpack-boilerplate#readme",
"repository": "https://github.com/dosbenjamin/eleventy-webpack-boilerplate",
"bugs": "https://github.com/dosbenjamin/eleventy-webpack-boilerplate/issues",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@babel/core": "^7.12.0",
"@babel/plugin-transform-runtime": "^7.12.0",
"@babel/preset-env": "^7.11.5",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@ianwalter/exclude-assets-plugin": "^1.0.0",
"@quasibit/eleventy-plugin-sitemap": "^2.0.3",
"babel-loader": "^8.1.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-closure-elimination": "^1.3.2",
"babel-plugin-groundskeeper-willie": "^1.3.2",
"babel-plugin-loop-optimizer": "^1.4.1",
"babel-plugin-object-to-json-parse": "^0.2.1",
"babel-plugin-wildcard": "^6.0.0",
"babel-preset-optimizations": "^2.0.0",
"bread-compressor-cli": "^1.1.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"cssnano-preset-advanced": "^4.0.7",
"dedent": "^0.7.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-webpack-plugin": "^2.1.0",
"extract-svg-sprite-webpack-plugin": "^0.8.1",
"file-loader": "^6.1.0",
"html-replace-webpack-plugin": "^2.5.6",
"html-webpack-plugin": "^4.5.0",
"image-minimizer-webpack-plugin": "^1.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-keep-folder": "^5.3.2",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.1",
"imagemin-svgo": "^8.0.0",
"lodash.assign": "^4.2.0",
"md5-file": "^5.0.0",
"mini-css-extract-plugin": "^0.11.2",
"node-sass-glob-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.1",
"postcss-combine-duplicated-selectors": "^10.0.2",
"postcss-combine-media-query": "^1.0.1",
"postcss-loader": "^4.0.3",
"postcss-sort-media-queries": "^2.1.9",
"posthtml-alt-always": "^1.0.1",
"posthtml-link-noreferrer": "^1.0.8",
"posthtml-minifier": "^0.1.0",
"rimraf": "^3.0.2",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"sharp": "^0.26.1",
"stylelint": "^13.7.2",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-declaration-use-variable": "^1.7.2",
"stylelint-high-performance-animation": "^1.5.1",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^2.1.1",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-inject-plugin": "^1.5.4",
"webpack-merge": "^5.1.4",
"webpack-plugin-pwa-manifest": "^1.0.4"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.12.0",
"sanitize.css": "^12.0.1"
}
}