This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.26 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
66
67
{
"name": "spacebook",
"version": "1.0.0",
"description": "A simple site generator based on Eleventy, Tailwind 2.0, and Alpine.js",
"scripts": {
"start": "eleventy --serve & postcss styles/tailwind.css --o _tmp/style.css --watch",
"build": " NODE_ENV=production ELEVENTY_PRODUCTION=true eleventy && postcss styles/tailwind.css --o _site/style.css && ./node_modules/.bin/cleancss -o _site/style.css _site/style.css",
"watch": "npx eleventy --watch",
"debug": "DEBUG=* npx eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/broeker/spacebook.git"
},
"author": "Tim Broeker <[email protected]> (https://www.electriccitizen.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/broeker/spacebook/issues"
},
"homepage": "https://github.com/broeker/spacebook",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"alpinejs": "^2.7.3",
"eleventy-plugin-lazyimages": "^2.1.0",
"eslint": "^7.9.0",
"lazysizes": "^5.2.2",
"luxon": "^1.25.0",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.3.0",
"markdown-it-image-lazysizes": "^1.0.0",
"postcss-cli": "^8.3.0",
"prettier": "^2.1.2",
"tailwindcss": "^2.0.2"
},
"dependencies": {
"@11ty/eleventy-img": "^0.5.0",
"@11ty/eleventy-navigation": "^0.1.6",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.1.0",
"clean-css": "^4.2.1",
"clean-css-cli": "^4.3.0",
"elasticlunr": "^0.9.5",
"eleventy-plugin-embed-everything": "^1.9.4",
"eleventy-plugin-nesting-toc": "^1.2.0",
"eleventy-plugin-svg-contents": "^0.7.0",
"eleventy-plugin-toc": "^1.1.0",
"emoji-regex": "^9.2.0",
"html-minifier": "^4.0.0",
"markdown-it-attrs": "^3.0.3",
"markdown-it-center-text": "^1.0.4",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-for-inline": "^0.1.1",
"markdown-it-linkify-images": "^2.0.0",
"markdown-it-table-of-contents": "^0.5.0",
"markdown-it-task-lists": "^2.1.1",
"postcss": "^8.2.2",
"qs": "^6.9.4",
"remove": "^0.1.5",
"staticrypt": "^1.3.2",
"uglify-es": "^3.3.9",
"url-pattern": "^1.0.3"
},
"main": ".eleventy.js"
}