-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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
{
"name": "polente-recipies",
"version": "1.0.0",
"description": "Some nice Recipes, generated by AI",
"main": "eleventy.config.js",
"scripts": {
"clean": "rimraf dist",
"build:files": "npx @11ty/eleventy --incremental",
"build:styles": "postcss src/site.css -o dist/styles/site.css --config postcss.config.js",
"build:critical": "node scripts/critical-css.js",
"build": "npm-run-all2 --parallel build:files build:styles && npm run build:critical",
"serve:files": "npx @11ty/eleventy --quiet --serve",
"serve:styles": "postcss src/site.css --dir dist/styles/ --watch --config postcss.config.js",
"serve": "npm-run-all2 --parallel serve:*"
},
"keywords": [
"recipe",
"vegan",
"polente"
],
"author": "Holger Hellinger",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^3.1.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"critters": "^0.0.23",
"cssnano": "^7.1.0",
"html-minifier-next": "^4.18.0",
"markdown-it": "^14.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-custom-media": "^11.0.6",
"postcss-custom-selectors": "^8.0.5",
"postcss-easy-import": "^4.0.0",
"postcss-extend-rule": "^4.0.0"
},
"devDependencies": {
"prettier": "^3.4.2",
"rimraf": "^6.0.1"
}
}