-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.87 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
56
57
58
59
60
61
{
"name": "blog",
"version": "1.1.1",
"author": "R. Mark Volkmann",
"bugs": {
"url": "https://github.com/mvolkmann/blog/issues"
},
"description": "Mark Volkmann's blog using 11ty",
"homepage": "https://github.com/mvolkmann/blog#readme",
"keywords": [
"blog"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mvolkmann/blog.git"
},
"scripts": {
"add": "git add .",
"all": "run-s build add commit push deploy",
"build": "npm run sass && eleventy",
"clean": "rm -rf _site",
"commit": "git commit -av",
"deploy": "gh-pages -d _site",
"format": "prettier --write 'src/**/*.{css,html,js}'",
"lint": "eslint --fix --quiet src --ext .js",
"push": "git push origin master",
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"sass": "sass --style=compressed src/sass:_site/assets",
"serve": "npm-run-all sass --parallel watch:*",
"watch:eleventy": "eleventy --serve",
"watch:sass": "npm run sass -- --watch"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-inclusive-language": "^1.0.3",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@mightyplow/eleventy-plugin-cache-buster": "^1.1.3",
"acorn": "^8.8.0",
"eleventy-plugin-nesting-toc": "^1.3.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"gh-pages": "^4.0.0",
"html-minifier": "^4.0.0",
"markdown-it-anchor": "^8.6.5",
"markdown-it-footnote": "^3.0.3",
"markdown-it-mathjax": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass": "^1.55.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"markdown-it": "^13.0.1"
}
}