-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.46 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
68
69
70
71
72
73
{
"name": "streamsites",
"version": "0.0.6",
"description": "Stream Sites - a static site boilerplate for streamers.",
"url": "https://demo.streamsites.xyz",
"author": {
"name": "Melanie E Magdalena",
"email": "[email protected]",
"url": "https://melaniemagdalena.com/"
},
"contributors": [
{
"name": "Ethan Kellogg",
"url": "https://fatsackgaming.com"
},
{
"name": "Leo Lutz",
"url": "https://github.com/skeemer"
}
],
"license": "MIT",
"repository": "https://github.com/Somehow-Qualified/stream-sites",
"bugs": "https://github.com/Somehow-Qualified/stream-sites/issues",
"homepage": "https://streamsites.xyz",
"scripts": {
"build": "npm-run-all clean build:html build:css build:css:dev build:js",
"build:html": "ELEVENTY_ENV=production eleventy --config=eleventy.config.js",
"build:css": "ELEVENTY_ENV=production postcss site/_includes/_css/main.css -o dist/css/main.min.css",
"build:css:dev": "ELEVENTY_ENV=admin postcss site/_includes/_css/main.css -o dist/css/tailwind.min.css",
"build:js": "terser dist/js/main.js -c -o dist/js/main.min.js",
"clean": "rm -rf dist",
"debug": "DEBUG=Eleventy* npm run build:html",
"watch": "npm-run-all --parallel watch:css watch:html",
"watch:html": "eleventy --config=eleventy.config.js --serve --port=8181",
"watch:css": "postcss site/_includes/_css/main.css -o dist/css/tailwind.min.css --watch",
"start": "npm run watch"
},
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tailwindcss/typography": "^0.3.0",
"autoprefixer": "^9.8.6",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eleventy-plugin-lazyimages": "^2.0.1",
"eleventy-plugin-reading-time": "0.0.1",
"html-minifier": "^4.0.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"markdown-it": "^11.0.1",
"markdown-it-anchor": "^6.0.0",
"markdown-it-attrs": "^3.0.3",
"markdown-it-collapsible": "^1.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-imsize": "^2.0.1",
"markdown-it-toc-done-right": "^4.2.0",
"markdown-it-video": "^0.6.3",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.35",
"postcss-cli": "^7.1.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"tailwindcss-dark-mode": "^1.1.7",
"terser": "^5.3.3"
},
"engines": {
"node": ">=12.13.0"
}
}