-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "mhs-11",
"version": "1.0.0",
"description": "MHS blog on eleventy",
"main": "index.js",
"scripts": {
"prestart": "run-s clean",
"start": "run-p develop:*",
"prebuild": "run-p clean",
"build": "run-s build:*",
"build:generate": "run-s 11ty:build css:build",
"develop:generate": "run-p 11ty:watch css:watch",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"11ty:build": "eleventy --quiet --output dist",
"11ty:watch": "eleventy --quiet --serve --output dist",
"css:watch": "postcss src/**/*.css --base src/assets/css --dir dist/css --watch --verbose",
"css:build": "postcss src/**/*.css --base src/assets/css --dir dist/css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"body-parser": "^1.19.0",
"browserslist": "^4.16.6",
"cssnano": "^5.0.9",
"eleventy-plugin-embed-twitter": "^1.3.4",
"eleventy-plugin-mathjax": "^2.0.4",
"fast-glob": "^3.2.7",
"global": "^4.4.0",
"markdown-it-anchor": "^5.3.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-implicit-figures": "^0.9.0",
"markdown-it-link-attributes": "^2.1.0",
"markdown-it-toc-done-right": "^4.2.0",
"node-fetch": "^3.1.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"nunjucks-date-filter": "^0.1.1",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.0.1",
"rimraf": "^2.7.1",
"serverless-http": "^2.7.0"
},
"devDependencies": {
"browser-sync": "^2.27.5",
"node-html-parser": "^5.2.0",
"stylelint": "^14",
"stylelint-order": "^5.0.0"
}
}