-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.07 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.07 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
{
"name": "brianjdevries.com",
"version": "2.0.0",
"description": "Brian DeVries's personal website",
"main": ".eleventy.js",
"scripts": {
"serve": "set ELEVENTY_ENV=development& npx @11ty/eleventy --serve --quiet",
"test": "set ELEVENTY_ENV=development& npx @11ty/eleventy --quiet",
"build": "set ELEVENTY_ENV=production& npx @11ty/eleventy && npm run create-search-index",
"create-search-index": "npx pagefind --site dist",
"new-post": "node ./setup-scripts/new-post.js"
},
"keywords": [
"eleventy",
"ssg",
"static-site-generator"
],
"author": "Brian DeVries",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.2.2",
"dayjs": "^1.11.5",
"html-validate": "^7.5.0",
"kleur": "^4.1.5",
"markdown-it": "^13.0.1",
"pagefind": "^1.0.3"
}
}