-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
75 lines (75 loc) · 2.42 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
{
"name": "v5.chriskrycho.com",
"version": "1.0.0",
"description": "The fifth version of chriskrycho.com.",
"main": "index.js",
"repository": "https://github.com/chriskrycho/v5.chriskrycho.com",
"author": "Chris Krycho <[email protected]>",
"license": "MIT",
"volta": {
"node": "20.14.0",
"pnpm": "9.4.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/common-tags": "^1.8.4",
"@types/gulp-dart-sass": "^1.0.5",
"@types/js-yaml": "^4.0.9",
"@types/luxon": "^3.4.2",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.10",
"@types/node": "^16.18.119",
"@types/serve-static": "^1.15.7",
"@types/uslug": "^1.0.4",
"common-tags": "^1.8.2",
"del": "^6.1.1",
"gray-matter": "^4.0.3",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.1.0",
"highlight.js": "^11.10.0",
"highlightjs-glimmer": "^2.2.2",
"js-yaml": "^4.1.0",
"luxon": "^3.5.0",
"markdown-it": "^13.0.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.6.7",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-implicit-figures": "^0.10.0",
"markdown-it-mark": "^3.0.1",
"markdown-it-sup": "^1.0.0",
"prettier": "^2.8.8",
"rollup": "^3.29.5",
"sass": "^1.81.0",
"striptags": "^3.2.0",
"true-myth": "^7.4.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typeset": "^0.3.4",
"uslug": "^1.0.4"
},
"prettier": {
"singleQuote": true,
"printWidth": 90,
"trailingComma": "all",
"tabWidth": 3
},
"scripts": {
"build:styles": "gulp all",
"build:site": "eleventy --quiet",
"build:scripts": "rollup -c rollup.config.mjs",
"build": "npm run build:scripts && npm run build:styles && npm run build:site",
"watch:styles": "gulp watch",
"watch:site": "eleventy --serve",
"watch:scripts": "rollup --config rollup.config.mjs --watch",
"watch": "npm run watch:site && npm run watch:styles",
"serve": "env DEV=true eleventy --quiet --serve --incremental",
"clean": "rm -rf public"
}
}