forked from adamduncan/eleventy-auto-navigation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.48 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
{
"name": "11ty-auto-navigation-book-template",
"version": "1.0.0",
"description": "Markdown directory structure-based navigation with eleventy-plugin-navigation.",
"main": ".eleventy.js",
"scripts": {
"dev": "ELEVENTY_ENV=dev npx @11ty/eleventy --serve",
"start": "npm run dev",
"prod": "ELEVENTY_ENV=prod npx @11ty/eleventy --serve",
"build": "ELEVENTY_ENV=prod npx @11ty/eleventy",
"dry:run": "npx @11ty/eleventy --dryrun",
"deploy": "ELEVENTY_ENV=prod cp .nojekyll _site/.nojekyll && cp CNAME _site/CNAME && cp manifest.json _site/manifest.json && gh-pages -d _site",
"build:deploy": "npm run build && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pietrop/11ty-auto-navigation-book-template.git"
},
"author": "Pietro Passarelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/pietrop/11ty-auto-navigation-book-template/issues"
},
"homepage": "https://github.com/pietrop/11ty-auto-navigation-book-template",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-navigation": "^0.1.6",
"gh-pages": "^3.2.3",
"@11ty/eleventy-img": "^0.9.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"eleventy-plugin-embed-twitter": "^1.3.2",
"eleventy-plugin-youtube-embed": "^1.6.4",
"eleventy-plugin-vimeo-embed": "^1.3.2",
"markdown-it": "^12.2.0",
"markdown-it-for-inline": "^0.1.1"
},
"dependencies": {
"markdown-it-checkbox": "^1.1.0"
}
}