-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "gurylev.com",
"version": "5.0.0",
"description": "Personal blog web site using the Eleventy static site generator.",
"engines": {
"node": "^18.0.0"
},
"scripts": {
"build": "npx eleventy",
"watch": "npx eleventy --watch",
"serve": "npx eleventy --serve",
"debug": "DEBUG=* npx eleventy",
"clean": "rm -rf ./dist/*",
"v": "vercel dev"
},
"repository": {
"type": "git",
"url": "git://github.com/fogrew/gurylev.com.git"
},
"author": {
"name": "Andrew Gurylev",
"email": "[email protected]",
"url": "https://gurylev.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fogrew/gurylev.com/issues"
},
"homepage": "https://github.com/fogrew/gurylev.com#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@fast-csv/parse": "^5.0.0",
"csso": "^5.0.5",
"eleventy-plugin-nesting-toc": "^1.3.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-bracketed-spans": "^1.0.1",
"node-webvtt": "^1.9.4",
"slugify": "^1.6.6"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}