This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.38 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
{
"name": "rare-blog-starter",
"description": "Ready to go static blog starter.",
"version": "1.0.0",
"license": "MIT",
"author": "rarechrisclark",
"type": "module",
"scripts": {
"dev": "npm run clean && npm run build && npm run serve",
"clean": "rimraf .cache _site static",
"debug:html": "cross-env DEBUG=Eleventy* ELEVENTY_ENV=development npx @11ty/eleventy --serve --incremental --port=8080",
"serve": "npm-run-all --parallel serve:*",
"serve:html": "cross-env ELEVENTY_ENV=development npx @11ty/eleventy --serve --incremental --port=8080",
"serve:css": "sass --watch src/assets/styles/main.scss:_site/assets/css/main.css --style=expanded --no-source-map",
"build": "npm-run-all --parallel build:*",
"build:favicons": "node ./config/setup/generate-favicons.js",
"build:html": "cross-env ELEVENTY_ENV=production npx @11ty/eleventy",
"build:css": "sass src/assets/styles/main.scss:_site/assets/css/main.css --no-source-map --style=compressed",
"test:build": "eleventy --dryrun"
},
"dependencies": {
"@11ty/eleventy": "3.0.0-alpha.15",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@eslint/config-array": "^0.17.0",
"@eslint/object-schema": "^2.1.4",
"minisearch": "^7.1.0",
"sharp": "^0.33.4",
"sharp-ico": "^0.1.5"
},
"devDependencies": {
"@11ty/eleventy-img": "^3.1.8",
"@toycode/markdown-it-class": "^1.2.4",
"@uncenter/eleventy-plugin-toc": "^1.0.3",
"bootstrap": "~5.3.3",
"cross-env": "^7.0.3",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.2.0",
"html-minifier-terser": "^7.2.0",
"liquidjs": "^10.15.0",
"markdown-it": "^14.0.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-eleventy-img": "^0.10.2",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^5.0.0",
"sass": "^1.69.7",
"slugify": "^1.6.5",
"stylelint": "^14.10.0",
"stylelint-config-standard-scss": "^5.0.0",
"svgo": "^3.3.2"
}
}