-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.83 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
{
"author": "statox (me@statox.fr)",
"bugs": {
"url": "https://github.com/statox/blog/issues"
},
"description": "A personal blog where I write about my side projects",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "21.0.2",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"async": "^3.2.6",
"eleventy-plugin-seo": "^0.5.2",
"eleventy-plugin-wordcount": "^1.0.5",
"follow-redirects": "^1.15.9",
"html-minifier": "^4.0.0",
"luxon": "^3.5.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-external-links": "^0.0.6",
"prettier": "^3.4.2"
},
"homepage": "www.statox.fr",
"keywords": [],
"license": "ISC",
"name": "blog",
"repository": {
"type": "git",
"url": "git+https://github.com/statox/blog.git"
},
"scripts": {
"build": "ELEVENTY_ENV=prod npx @11ty/eleventy --input=src --output=docs",
"build:clean": "rm -rf docs",
"create-issues": "node tools/createIssues.mjs",
"debug": "npm run build:clean && npm run secrets:decrypt && DEBUG=Eleventy* ELEVENTY_ENV=dev npx @11ty/eleventy --input=src --output=docs --serve",
"dev": "npm run build:clean && npm run secrets:decrypt && ELEVENTY_ENV=dev npx @11ty/eleventy --input=src --output=docs --serve",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"secrets:decrypt": "./tools/secrets/decrypt_secrets",
"secrets:unmount": "./tools/secrets/unmount_secrets"
},
"version": "1.0"
}