-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "@lea.rosema/blog",
"type": "module",
"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": "^3.1.2",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"browserslist": "^4.28.1",
"cross-env": "^10.1.0",
"dayjs": "^1.11.19",
"editorconfig-checker": "^6.1.1",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"front-matter": "^4.0.2",
"glob": "^13.0.0",
"htm": "^3.1.1",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.30.2",
"linkedom": "^0.18.12",
"prismjs": "^1.30.0",
"semantic-release": "^25.0.2",
"stylelint": "^17.0.0",
"stylelint-config-recommended": "^18.0.0",
"vanillah": "^1.0.8"
}
}