-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "brentley.dev",
"version": "1.0.0",
"description": "Source for Brentley Jones' blog.",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production eleventy",
"clean": "rimraf _site",
"prettier": "prettier --write .",
"dev": "concurrently npm:watch:*",
"watch:browser": "eleventy-dev-server --dir=_site",
"watch:eleventy": "cross-env ELEVENTY_ENV=development eleventy --watch"
},
"author": "Brentley Jones",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"clean-css": "^5.3.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eleventy-plugin-embed-twitter": "^1.4.0",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"luxon": "^3.4.4",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.4.1",
"markdown-it-footnote": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"markdown-it-replace-link": "^1.2.1",
"minify-xml": "^3.5.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"smartquotes": "^2.3.2"
}
}