generated from clenemt/eleventy-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.27 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
{
"license": "NPLv4+",
"name": "page",
"repository": {
"type": "git",
"url": "https://github.com/auctumnus/page"
},
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write **/*.{js,s?css,yml}",
"start": "cross-env NODE_ENV=development npm-run-all -l clean --parallel start:*",
"start:webpack": "webpack --watch",
"start:eleventy": "eleventy --serve",
"build": "cross-env NODE_ENV=production npm-run-all -l clean build:*",
"build:webpack": "webpack",
"build:eleventy": "eleventy",
"build:humans": "cp src/humans.txt dist/humans.txt",
"analyze": "npm-run-all build analyze:*",
"analyze:js": "source-map-explorer dist/**/*.js dist/**/*.js.map",
"pages": "NODE_DEBUG=gh-pages gh-pages -d dist -a -m 'update site'",
"deploy": "pnpm run build && pnpm run pages"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babel-loader": "^8.2.2",
"cheerio": "^1.0.0-rc.3",
"compress-images": "^1.9.9",
"core-js": "^3.8.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"date-fns": "^2.16.1",
"eleventy-plugin-error-overlay": "^0.1.2",
"gh-pages": "^3.2.3",
"gifsicle": "^5.2.0",
"html-minifier": "^4.0.0",
"js-yaml": "^3.14.1",
"markdown-it": "^12.0.3",
"markdown-it-anchor": "^6.0.1",
"markdown-it-attrs": "^3.0.3",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-footnote": "^3.0.3",
"mini-css-extract-plugin": "^1.3.3",
"npm-run-all": "^4.1.5",
"outdent": "^0.7.1",
"postcss": "^8.2.1",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"sharp": "^0.28.3",
"source-map-explorer": "^2.5.1",
"svg-sprite": "^1.5.0",
"vinyl": "^2.2.1",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0",
"webpack-manifest-plugin": "^3.0.0"
},
"dependencies": {
"@11ty/eleventy-img": "^0.9.0"
}
}