-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
58 lines (58 loc) · 1.82 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
{
"license": "MIT",
"name": "eleventy-webpack",
"repository": {
"type": "git",
"url": "https://github.com/clenemt/eleventy-webpack"
},
"scripts": {
"clean": "rimraf _site",
"format": "prettier --write **/*.{js,s?css,yml} !_site",
"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",
"analyze": "npm-run-all build analyze:*",
"analyze:js": "source-map-explorer _site/**/*.js _site/**/*.js.map"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-img": "^0.5.0",
"@11ty/eleventy-navigation": "^0.1.6",
"@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",
"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",
"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",
"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",
"rimraf": "^3.0.2",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"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"
}
}