-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.24 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.24 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
{
"name": "hylia",
"version": "0.7.0",
"description": "A simple Eleventy starter kit to help you have a blog of your own",
"main": "index.js",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"@tbranyen/jsdom": "^13.0.0",
"concurrently": "^9.2.1",
"eleventy-plugin-youtube-embed": "^1.6.5",
"html-minifier": "^4.0.0",
"image-size": "^0.8.3",
"json-to-scss": "^1.3.1",
"metascraper": "^5.26.0",
"metascraper-amazon": "^5.26.0",
"metascraper-author": "^5.26.0",
"metascraper-clearbit": "^5.26.0",
"metascraper-date": "^5.26.0",
"metascraper-description": "^5.26.0",
"metascraper-image": "^5.26.0",
"metascraper-logo": "^5.26.0",
"metascraper-logo-favicon": "^5.26.0",
"metascraper-publisher": "^5.26.0",
"metascraper-soundcloud": "^5.26.0",
"metascraper-spotify": "^5.26.0",
"metascraper-title": "^5.26.0",
"metascraper-url": "^5.26.0",
"metascraper-youtube": "^5.26.0",
"node-cache": "^5.1.2",
"sass": "^1.26.3",
"semver": "^6.3.0",
"slugify": "^1.4.0",
"stalfos": "github:hankchizljaw/stalfos#c8971d22726326cfc04089b2da4d51eeb1ebb0eb"
},
"devDependencies": {
"@11ty/eleventy-img": "^6.0.4",
"@sardine/eleventy-plugin-tinycss": "^1.5.0",
"bl": "^3.0.1",
"chokidar-cli": "^3.0.0",
"cross-env": "^5.2.1",
"eleventy-plugin-compress": "^1.0.2",
"make-dir-cli": "^4.0.0",
"prettier": "^1.19.1"
},
"scripts": {
"sass:tokens": "npx json-to-scss src/_data/tokens.json src/scss/_tokens.scss",
"sass:process": "npm run sass:tokens && sass src/scss/global.scss src/_includes/assets/css/global.css --style=compressed",
"start": "concurrently \"npm run sass:process -- --watch\" \"npm run serve\"",
"serve": "cross-env ELEVENTY_ENV=development npx eleventy --serve --incremental",
"production": "npm run sass:process && npx eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KennethLamar/website.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/KennethLamar/website/issues"
},
"homepage": "https://github.com/KennethLamar/website#readme"
}