-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 954 Bytes
/
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
{
"name": "thatamyblog",
"version": "3.0.0",
"description": "My personal blog; mostly about tech stuff",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./_site",
"build": "npm run clean && sass scss:_site/assets/css && eleventy",
"start": "npm run watch:eleventy & npm run watch:sass",
"watch:eleventy": "npx @11ty/eleventy --serve --watch",
"watch:sass": "npx sass scss:_site/assets/css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amy-mac/amy-mac.github.io.git"
},
"author": "Amy St. John",
"license": "ISC",
"homepage": "http://amy-mac.com",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-inclusive-language": "^1.0.2",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.2.2",
"eleventy-plugin-excerpt": "^1.1.2",
"eleventy-plugin-time-to-read": "^1.1.0",
"sass": "^1.55.0"
}
}