-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
{
"name": "@lea.rosema/blog",
"version": "0.1.0",
"description": "Lea's personal website",
"scripts": {
"start": "npm run dev -s",
"dev": "eleventy --serve",
"lint": "npm run lint:format -s && npm run lint:html -s && npm run lint:css -s && npm run lint:js",
"lint:format": "editorconfig-checker",
"lint:html": "java -jar node_modules/vnu-jar/build/dist/vnu.jar --skip-non-html --filterfile .vnurc dist",
"lint:css": "stylelint \"src/assets/css/**/*.css\"",
"lint:js": "eslint eleventy.config.js src/assets/js",
"build": "cross-env NODE_ENV=production PANGOCAIRO_BACKEND=fontconfig eleventy"
},
"repository": {
"type": "git",
"url": "https://github.com/lea-lgbt/blog.git"
},
"browserslist": [
"last 2 version",
"not dead"
],
"private": true,
"engines": {
"node": ">=18"
},
"release": {
"branches": [
"main"
]
},
"keywords": [],
"author": "Lea Rosema",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.8",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"browserslist": "^4.22.3",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"editorconfig-checker": "^5.1.3",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"front-matter": "^4.0.2",
"glob": "^10.3.10",
"htm": "^3.1.1",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.23.0",
"linkedom": "^0.16.8",
"prismjs": "^1.29.0",
"semantic-release": "^23.0.1",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"vanillah": "^1.0.7",
"vnu-jar": "^23.4.11"
}
}