-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
{
"name": "mattmcadams.com",
"version": "6.1.0",
"description": "Personal website, portfolio, and blog of Matthew McAdams",
"private": true,
"license": "none",
"author": {
"name": "Matthew McAdams",
"email": "[email protected]",
"url": "https://mattmcadams.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/mattmcadams/website.git"
},
"bugs": {
"url": "https://github.com/mattmcadams/website/issues"
},
"scripts": {
"build": "eleventy",
"watch": "eleventy --watch",
"dev": "eleventy --serve",
"debug": "DEBUG=* eleventy",
"download": "gcloud storage cp -r gs://mattmcadams.com/* src/_static/images/",
"upload": "gcloud storage cp -r src/_static/images/* gs://mattmcadams.com",
"upload-sketchbook": "gcloud storage cp -r src/_static/images/sketchbook/* gs://mattmcadams.com/sketchbook",
"upload-posts": "gcloud storage cp -r src/_static/images/posts/* gs://mattmcadams.com/posts",
"upload-projects": "gcloud storage cp -r src/_static/images/projects/* gs://mattmcadams.com/projects"
},
"homepage": "https://github.com/mattmcadams/website",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"luxon": "^2.5.2",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^7.1.0",
"markdown-it-footnote": "^4.0.0"
}
}