-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.06 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
{
"name": "velvetcache.org",
"version": "1.0.0",
"description": "John Hobbs blog",
"main": "",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "github:11ty/eleventy-plugin-rss",
"@sindresorhus/slugify": "^1.1.2",
"eleventy-plugin-highlightjs": "^1.1.0",
"luxon": "^1.21.2",
"normalize.css": "^8.0.1",
"sass": "^1.60.0"
},
"scripts": {
"dev": "run-p dev:*",
"dev:serve": "npm run build:11ty -- --serve",
"dev:style": "npm run build:style -- --watch",
"build": "run-s build:style build:og build:11ty",
"build:style": "sass --style compressed --load-path=node_modules/normalize.css/ ./src/_style/theme.scss ./src/static/theme.css",
"build:11ty": "npx @11ty/eleventy --input=./src --output=./dist",
"build:og": "mkdir -p ./.cache/og && mkdir -p ./src/static/og/generated && cd hack/opengraph-images/ && go run ./cmd/generate ../../ src/posts src/static/og/generated .cache/og"
},
"author": "John Hobbs <[email protected]>",
"dependencies": {
"npm-run-all": "^4.1.5"
}
}