generated from lwojcik/eleventy-template-multiplicity
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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
{
"name": "eleventy-template-multiplicity",
"version": "2.1.0",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"build:eleventy": "npx eleventy --quiet",
"build": "npm-run-all build:*",
"postbuild": "npm run minify:js",
"minify:js": "node ./build-scripts/minify",
"watch:eleventy": "npx eleventy --serve --quiet",
"watch:sass": "sass --no-source-map --watch ./styles:_site/css --style compressed",
"build:sass": "sass --no-source-map styles:_site/css --style compressed",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"format": "npx prettier .",
"format:fix": "npx prettier . --write",
"clean": "rimraf _site",
"predev": "npm run clean",
"dev": "ELEVENTY_ENV=development npm-run-all build:sass --parallel watch:*",
"debug": "DEBUG=Eleventy* npm run dev",
"start": "npm run dev"
},
"dependencies": {
"@11ty/eleventy": "2.0.1",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@extractus/feed-extractor": "^7.1.3",
"cli-color": "^2.0.4",
"eleventy-plugin-gen-favicons": "^1.1.3",
"gray-matter": "^4.0.3",
"html-minifier-terser": "^7.2.0",
"image-type": "^5.2.0",
"is-svg": "^5.1.0",
"luxon": "^3.5.0",
"minify-xml": "^4.5.2",
"npm": "^10.8.2",
"npm-run-all": "^4.1.5",
"sass": "^1.77.8",
"sharp": "^0.33.4",
"slugify": "^1.6.6",
"string-strip-html": "8.5.0",
"terser": "^5.31.5"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
}
}