-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.75 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
52
53
54
55
{
"name": "chrisspiegl-com",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-s dev",
"dev": "run-s clean:dev eleventy:dev",
"build": "run-s clean:prod eleventy:prod",
"eleventy:dev": "cross-env NODE_ENV=development eleventy --serve",
"eleventy:prod": "cross-env NODE_ENV=production eleventy",
"clean:dev": "shx rm -rf _site_development",
"clean:prod": "shx rm -rf _site_production",
"check": "linkinator -r -c 10 ./_site; true",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "rsync -avzPO --no-perms --no-owner --no-group --delete ./_site/ swMain:/var/www/chrisspiegl.com"
},
"keywords": [],
"author": {
"name": "Chris Spiegl",
"email": "chris@chrisspiegl.com",
"url": "https://chrisspiegl.com/"
},
"license": "UNLICENSED",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"@gerhobbelt/markdown-it-responsive": "^0.1.1-3",
"async-git": "^1.13.2",
"axios": "^0.19.2",
"clean-css": "^4.2.3",
"concurrently": "^5.3.0",
"critical": "^2.0.6",
"cssesc": "^3.0.0",
"csvtojson": "^2.0.10",
"eleventy-plugin-embed-everything": "^1.13.2",
"eleventy-plugin-reading-time": "0.0.1",
"get-audio-duration": "^2.0.3",
"html-minifier": "^4.0.0",
"linkinator": "^2.13.6",
"littlefoot": "^3.4.1",
"luxon": "^1.27.0",
"markdown-it": "^11.0.1",
"markdown-it-anchor": "^5.3.0",
"markdown-it-container": "^3.0.0",
"markdown-it-footnote": "^3.0.3",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"sharp": "^0.25.4",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3"
}
}