-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.08 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.08 KB
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
{
"name": "benkutil.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run build",
"start": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy",
"build:prod": "ELEVENTY_ENV=production npx @11ty/eleventy",
"lint": "npm run lint:format && npm run lint:css && npm run lint:js",
"lint:format": "prettier --check \"**/*.{js,mjs,css,njk,html,md,json}\"",
"lint:format:fix": "prettier --write \"**/*.{js,mjs,css,njk,html,md,json}\"",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix",
"lint:js": "eslint \"**/*.{js,mjs}\"",
"lint:js:fix": "eslint \"**/*.{js,mjs}\" --fix",
"test:accessibility": "pa11y-ci",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benkutil/benkutil.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/benkutil/benkutil.github.io/issues"
},
"homepage": "https://github.com/benkutil/benkutil.github.io#readme",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0-beta.3",
"@11ty/eleventy-img": "^3.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@eslint/js": "^9.39.2",
"autoprefixer": "^10.4.24",
"cssnano": "^7.1.2",
"eleventy-plugin-webmentions": "^2.0.0",
"eslint": "^9.39.2",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"luxon": "^3.5.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"outdent": "^0.8.0",
"pa11y-ci": "^4.0.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.1",
"serve": "^14.2.5",
"stylelint": "^17.1.0",
"stylelint-config-standard": "^40.0.0",
"wait-on": "^9.0.3"
},
"dependencies": {
"@11ty/eleventy-upgrade-help": "^2.0.5",
"dotenv": "^16.0.3",
"eleventy-plugin-toc": "^1.1.5"
}
}