-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.05 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "trebledjs-pages",
"version": "2.0.0",
"description": "TrebledJ's personal blog on programming, music, and memes.",
"scripts": {
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"check-links": ". scripts/links.sh",
"validate-html": "html-validate _site/",
"icon-minify": "node node_modules/icon-minifier/dist/src/index.js _site --exts html,js,json --replace-css-links --cache-bust --output-css-folder ./cb/css --output-font-folder ./cb/webfonts",
"test:jest": "jest",
"test": "npm-run-all --parallel test:*",
"lint": "npx eslint . --fix",
"rake": "cd eleventy/detail/keywords/rake-js && npm install --ignore-scripts && npm run build",
"dev:sass": "sass assets/scss:_site/css",
"watch:sass": "sass --watch assets/scss:_site/css --quiet",
"prod:sass": "sass --style=compressed assets/scss:_site/css && cleancss --batch --batch-suffix '.min' -O2 _site/css/*.css !_site/css/*.min.css",
"watch:eleventy": "eleventy --serve --quiet",
"prod:eleventy": "eleventy",
"dev": "ENVIRONMENT=development npm-run-all --parallel watch:*",
"fast": "ENVIRONMENT=fast npm-run-all --parallel watch:*",
"prod": "ENVIRONMENT=production npm-run-all --parallel prod:* && npm run icon-minify"
},
"repository": {
"type": "git",
"url": "git://github.com/trebledj/trebledj.github.io.git"
},
"author": {
"name": "TrebledJ",
"email": "[email protected]",
"url": "https://trebledj.me/"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"chalk": "^4",
"cheerio": "^1.0.0-rc.12",
"clean-css": "^5.3.3",
"clean-css-cli": "^5.6.3",
"cross-spawn": "^7.0.6",
"eleventy-plugin-git-commit-date": "^0.1.3",
"eleventy-plugin-icons": "^4.5.0",
"eleventy-plugin-toc": "^1.1.5",
"eleventy-sass": "^2.2.4",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"html-minifier": "^4.0.0",
"html-validate": "^9.1.3",
"icon-minifier": "github:TrebledJ/icon-minifier",
"jest": "^29.7.0",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-footnote": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"npm-run-all": "^4.1.5",
"sass": "^1.78.0",
"sharp": "^0.33.3",
"terser": "^5.34.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"domino": "^2.1.6",
"entities": "^5.0.0",
"font-awesome": "^4.7.0",
"jquery": "^3.7.1",
"katex": "^0.16.21",
"lunr": "^2.3.9",
"magnific-popup": "^1.2.0",
"prismjs": "^1.29.0",
"sharer.js": "^0.5.1",
"typewriter-effect": "^2.21.0"
}
}