The fifth version of chriskrycho.com, built in Eleventy.
at canon 2.3 kB view raw
1{ 2 "name": "v5.chriskrycho.com", 3 "version": "1.0.0", 4 "description": "The fifth version of chriskrycho.com.", 5 "main": "index.js", 6 "repository": "https://github.com/chriskrycho/v5.chriskrycho.com", 7 "author": "Chris Krycho <hello@chriskrycho.com>", 8 "license": "MIT", 9 "devDependencies": { 10 "@11ty/eleventy": "^2.0.1", 11 "@biomejs/biome": "^2.3.10", 12 "@rollup/plugin-node-resolve": "^15.3.1", 13 "@rollup/plugin-strip": "^3.0.4", 14 "@rollup/plugin-terser": "^0.4.4", 15 "@rollup/plugin-typescript": "^11.1.6", 16 "@types/common-tags": "^1.8.4", 17 "@types/gulp-dart-sass": "^1.0.5", 18 "@types/js-yaml": "^4.0.9", 19 "@types/luxon": "^3.7.1", 20 "@types/markdown-it": "^12.2.3", 21 "@types/markdown-it-container": "^2.0.10", 22 "@types/node": "^16.18.126", 23 "@types/serve-static": "^1.15.10", 24 "@types/uslug": "^1.0.4", 25 "common-tags": "^1.8.2", 26 "del": "^6.1.1", 27 "gray-matter": "^4.0.3", 28 "gulp": "^4.0.2", 29 "gulp-dart-sass": "^1.1.0", 30 "highlight.js": "^11.11.1", 31 "highlightjs-glimmer": "^2.2.2", 32 "js-yaml": "^4.1.1", 33 "luxon": "^3.7.2", 34 "markdown-it": "^13.0.2", 35 "markdown-it-abbr": "^1.0.4", 36 "markdown-it-anchor": "^8.6.7", 37 "markdown-it-deflist": "^2.1.0", 38 "markdown-it-footnote": "^3.0.3", 39 "markdown-it-implicit-figures": "^0.10.0", 40 "markdown-it-mark": "^3.0.1", 41 "markdown-it-sup": "^1.0.0", 42 "rollup": "^3.29.5", 43 "sass": "^1.94.2", 44 "striptags": "^3.2.0", 45 "true-myth": "^7.4.0", 46 "ts-node": "^10.9.2", 47 "tslib": "^2.8.1", 48 "typescript": "^5.9.3", 49 "typeset": "^0.3.5", 50 "uslug": "^1.0.4" 51 }, 52 "scripts": { 53 "build:styles": "gulp all", 54 "build:site": "eleventy --quiet", 55 "build:scripts": "rollup -c rollup.config.mjs", 56 "build": "npm run build:scripts && npm run build:styles && npm run build:site", 57 "watch:styles": "gulp watch", 58 "watch:site": "eleventy --serve", 59 "watch:scripts": "rollup --config rollup.config.mjs --watch", 60 "watch": "npm run watch:site && npm run watch:styles", 61 "serve": "env DEV=true eleventy --quiet --serve --incremental", 62 "clean": "rm -rf public" 63 } 64}