-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "nibir-sankar",
"description": "A minimalistic personal website",
"scripts": {
"watch:sass": "sass --watch src/styles:_site/css",
"build:sass": "sass src/styles:_site/css",
"watch:eleventy": "npx @11ty/eleventy --serve",
"build:eleventy": "npx @11ty/eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*"
},
"license": "MIT",
"dependencies": {
"luxon": "^3.0.1"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"eleventy-plugin-reading-time": "^0.0.1",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-footnote": "^4.0.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-mathjax3": "^4.3.2",
"markdown-it-video": "^0.6.3",
"npm-run-all": "^4.1.5",
"sass": "^1.75.0"
}
}