-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.95 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
{
"name": "eleventy-classic-blog-starter",
"description": "A starter repository for a \"classic-themed\" blog website using Eleventy",
"keywords": [
"eleventy",
"11ty",
"starter",
"syntax-highlighting",
"highlight-js",
"hyde-theme"
],
"version": "2.0.1",
"license": "MIT",
"author": "Ben Michaud <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/TigersWay/eleventy-classic-blog-starter.git"
},
"homepage": "https://github.com/TigersWay/eleventy-classic-blog-starter/#readme",
"scripts": {
"start": "NODE_ENV=development concurrently -c auto npm:dev:* --kill-others",
"prestart": "rm -rf ./public",
"dev:11ty": "eleventy --serve --incremental --quiet",
"dev:css": "postcss site/_themes/$npm_package_config_theme/css/styles.css -o public/css/styles.min.css -w",
"build": "npm run build:css && npm run build:11ty",
"prebuild": "rm -rf ./build",
"build:11ty": "NODE_ENV=production eleventy --output build --quiet --pathprefix $PATHPREFIX",
"build:css": "NODE_ENV=production postcss site/_themes/$npm_package_config_theme/css/styles.css -o site/_themes/$npm_package_config_theme/css/styles.min.css -m",
"prod-preview": "npx http-server build -o --gzip --brotli"
},
"config": {
"theme": "hyde"
},
"devDependencies": {
"@11ty/eleventy": "2.0.0",
"concurrently": "^7.6.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"fast-glob": "^3.2.12",
"highlight.js": "^11.7.0",
"html-minifier": "^4.0.0",
"markdown-it": "^13.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-eleventy-img": "^0.10.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-link-attributes": "^4.0.1",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-csso": "^6.0.1",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3"
},
"dependencies": {
"@fontsource/abril-fatface": "^4.5.9",
"@fontsource/pt-sans": "^4.5.11"
}
}