-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.77 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
{
"name": "bobmonsour.com",
"version": "1.0.0",
"description": "It's my personal site...and a work in progress. It's built with [eleventy](https://www.11ty.dev/)...something I'm enjoying learning and using.",
"main": ".eleventy.js",
"type": "module",
"scripts": {
"build": "cross-env ELEVENTY_ENV=production npx @11ty/eleventy",
"postbuild": "npm run pagefind",
"debug": "cross-env ELEVENTY_ENV=dev DEBUG=Eleventy* npx @11ty/eleventy --serve",
"start": "cross-env ELEVENTY_ENV=development npx @11ty/eleventy",
"postdev": "npx -y pagefind --site _site --serve --force-language unknown",
"startns": "cross-env ELEVENTY_ENV=development npx @11ty/eleventy --serve",
"pagefind": "npx -y pagefind --site _site --force-language unknown",
"rs": "npm run clean && npm run start && npm run postdev",
"rsns": "npm run clean && npm run startns",
"links": "npx check-html-links _site",
"clean": "rimraf ./_site"
},
"keywords": [],
"author": {
"name": "Bob Monsour",
"email": "[email protected]",
"url": "https://bobmonsour.com"
},
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@11ty/is-land": "^4.0.0",
"@rknightuk/eleventy-plugin-post-graph": "^1.0.4",
"@zachleat/snow-fall": "^1.0.2",
"check-html-links": "^0.2.4",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-table-of-contents": "^0.8.0",
"pagefind": "^1.3.0",
"path": "^0.12.7",
"postcss": "^8.4.21",
"postcss-minify": "^1.1.0",
"rimraf": "^4.00"
}
}