-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "polente-recipies",
"version": "1.0.0",
"description": "Some nice Recipes, generated by AI",
"main": "eleventy.config.js",
"scripts": {
"clean": "rm -rf dist",
"build:files": "npx @11ty/eleventy",
"build:styles": "postcss src/site.css -o dist/styles/site.css --config postcss.config.js",
"build": "run-p build:*",
"serve:files": "npx @11ty/eleventy --quiet --incremental --serve",
"serve:styles": "postcss src/site.css --dir dist/styles/ --watch --config postcss.config.js",
"serve": "run-p serve:*"
},
"keywords": [
"recipe",
"vegan",
"polente"
],
"author": "Holger Hellinger",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"cssnano": "^6.0.1",
"html-minifier": "^4.0.0",
"markdown-it": "^13.0.1",
"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-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"postcss-custom-media": "^9.1.4",
"postcss-custom-selectors": "^7.1.3",
"postcss-easy-import": "^4.0.0",
"postcss-extend-rule": "^4.0.0"
},
"devDependencies": {
"prettier": "^2.8.0"
}
}