-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 2.14 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 2.14 KB
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": "streamsites",
"version": "0.0.5",
"description": "Stream Sites - a static site boilerplate for streamers.",
"url": "https://demo.streamsites.xyz",
"author": {
"name": "Melanie E Magdalena",
"email": "hello@melaniemagdalena.com",
"url": "https://melaniemagdalena.com/"
},
"contributors": [
{
"name": "Ethan Kellogg",
"url": "https://fatsackfails.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",
"main": "index.js",
"scripts": {
"netlify": "npm-run-all build:html build:css build:js",
"build": "npm-run-all build:html build:css build:js",
"build:html": "NODE_ENV=production eleventy --config=eleventy.config.js",
"build:css": "TAILWIND_ENV=production postcss src/site/_includes/_css/main.css --o dist/css/main.min.css",
"build:js": "terser dist/js/main.js -c -o dist/js/main.min.js",
"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 src/site/_includes/_css/main.css --o dist/css/main.min.css --watch",
"start": "npm run watch"
},
"dependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.16",
"cssnano": "^5.1.14",
"dotenv": "^10.0.0",
"eleventy-plugin-lazyimages": "^1.1.2",
"eleventy-plugin-reading-time": "0.0.1",
"html-minifier": "^4.0.0",
"lodash": "^4.17.15",
"luxon": "^2.1.1",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.3.0",
"markdown-it-attrs": "^3.0.3",
"markdown-it-footnote": "^3.0.2",
"markdown-it-table-of-contents": "^0.4.4",
"markdown-it-video": "^0.6.3",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^9.0.2",
"tailwindcss": "^3.3.5",
"terser": "^4.8.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}