forked from LeaVerou/lea.verou.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.44 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
{
"name": "lea.verou.me",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "netlify dev -p 8844",
"build:css": "npx postcss \"**/*.postcss\" --base . --dir . --ext .css --config postcss.config.cjs",
"build:html": "npx @11ty/eleventy --config=.eleventy.cjs",
"build": "npm run build:html && npm run build:css",
"watch:css": "npx postcss \"**/*.postcss\" --base . --dir . --ext .css --config postcss.config.cjs --watch",
"watch:html": "npx @11ty/eleventy --config=.eleventy.cjs --watch --quiet --incremental",
"watch": "npx concurrently -n w: npm:watch:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leaverou/lea.verou.me.git"
},
"author": "Lea Verou",
"license": "",
"bugs": {
"url": "https://github.com/leaverou/lea.verou.me/issues"
},
"homepage": "https://github.com/leaverou/lea.verou.me#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"concurrently": "^8.0",
"eleventy-plugin-embed-everything": "^1",
"eleventy-plugin-toc": "^1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8",
"markdown-it-attrs": "^4",
"markdown-it-footnote": "^3.0.3",
"markdown-it-mathjax3": "^4.3.2",
"plur": "^5",
"postcss": "^8",
"postcss-cli": "^10",
"postcss-nesting": "^12",
"reading-time": "^1.5.0"
}
}