-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "@mvsde/website",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "URL=http://localhost:8080 eleventy --incremental --serve",
"build": "URL=$URL eleventy",
"format": "prettier --write .",
"lint": "node --run lint:css && node --run lint:js && node --run lint:markdown && node --run lint:format",
"lint:css": "stylelint '**/*.{css,webc}'",
"lint:js": "eslint",
"lint:markdown": "markdownlint-cli2 '**/*.md' '!node_modules'",
"lint:format": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvsde/website.git"
},
"author": "Fynn Ellie Becker <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/mvsde/website/issues"
},
"homepage": "https://fynn.be",
"engines": {
"node": ">=23"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@capsizecss/core": "^4.1.2",
"@capsizecss/metrics": "^3.4.0",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-container": "^4.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdownlint-cli2": "^0.17.1",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4"
}
}