-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "simpixelated.com",
"version": "2.3.8",
"type": "module",
"description": "personal website and blog of Jordan Kohl (simpixelated)",
"main": ".eleventy.js",
"author": "Jordan Kohl",
"license": "MIT",
"scripts": {
"build:eleventy": "npx @11ty/eleventy",
"build:sass": "npx sass src/scss:dist/css",
"build": "npm run build:sass & npm run build:eleventy",
"serve:social": "NODE_ENV=social npx @11ty/eleventy --serve",
"build:images": "node ./scripts/generate-social-cards.js",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"watch:eleventy": "npx @11ty/eleventy --serve",
"watch:sass": "npx sass src/scss:dist/css --watch",
"start": "npm run watch:eleventy & npm run watch:sass"
},
"keywords": [],
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-img": "^6.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"husky": "^9.1.7",
"luxon": "^3.5.0",
"path": "^0.12.7",
"prettier": "^3.4.2",
"puppeteer": "^23.11.1",
"sass": "^1.83.1"
},
"repository": {
"type": "git",
"url": "https://github.com/simpixelated/simpixelated.com"
},
"bugs": {
"url": "https://github.com/simpixelated/simpixelated.com/issues"
},
"engines": {
"node": ">=18"
}
}