-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 785 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 785 Bytes
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
{
"name": "open-web-docs-website",
"version": "1.0.0",
"description": "Website for Open Web Docs",
"type": "module",
"scripts": {
"build": "npx @11ty/eleventy",
"bench": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"watch": "npx @11ty/eleventy --watch",
"serve": "npx @11ty/eleventy --serve",
"start": "npx @11ty/eleventy --serve",
"debug": "DEBUG=* npx @11ty/eleventy",
"format": "prettier --write '**/*.html' '**/*.js' '**/*.css' '**/*.json'"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"eleventy-plugin-og-image": "^4.2.1",
"prettier": "^3.8.1"
},
"dependencies": {
"markdown-it-named-headings": "^1.1.0"
}
}