-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.95 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
62
63
64
65
{
"name": "elva",
"version": "3.0.4",
"description": "A multilingual, clean, green, 11ty starter theme",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && npx @11ty/eleventy",
"build:prod": "export NODE_ENV=production && rimraf dist && npx @11ty/eleventy",
"build:stage": "export NODE_ENV=staging && rimraf dist && npx @11ty/eleventy",
"dev": "npx @11ty/eleventy --watch --serve --incremental",
"clean": "rimraf dist",
"debug": "DEBUG=Eleventy* npm run dev",
"benchmark": "DEBUG=Eleventy:Benchmark* npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"release-patch": "npm version patch --force && npm publish",
"release-minor": "npm version minor --force && npm publish",
"release-major": "npm version major --force && npm publish"
},
"bugs": {
"url": "https://github.com/scottsweb/elva/issues"
},
"keywords": [
"eleventy",
"11ty",
"starter",
"theme",
"i18n",
"rss",
"markdown",
"sitemaps",
"CSS",
"alpine"
],
"author": {
"name": "Scott Evans",
"url": "https://scott.ee",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@alpinejs/intersect": "^3.14.3",
"alpinejs": "^3.14.3",
"browserslist": "^4.24.2",
"eleventy-plugin-embed-everything": "^1.19.0",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.27.0",
"lodash.get": "^4.4.2",
"markdown-it-anchor": "^9.2.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-table-of-contents": "^0.8.0",
"mime-types": "^2.1.35",
"node-html-to-image": "^5.0.0",
"rimraf": "^6.0.1",
"terser": "^5.36.0"
}
}