-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.32 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
68
69
70
71
72
73
74
{
"name": "jensa.dev",
"version": "3.0.0",
"description": "Personal website of Jens Andreasson",
"type": "module",
"engines": {
"node": ">=20.x.x"
},
"scripts": {
"watch:eleventy": "eleventy --serve --watch",
"watch:rollup": "rollup -c -w",
"build:eleventy": "eleventy",
"build:rollup": "rollup -c",
"start": "cross-env ELEVENTY_ENV=dev npm-run-all --parallel watch:*",
"build": "cross-env ELEVENTY_ENV=prod npm-run-all --parallel build:*",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"repository": {
"type": "git",
"url": "https://github.com/jensadev/jensa.dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jensadev/jensa.dev/issues"
},
"homepage": "https://github.com/jensadev/jensa.dev",
"dependencies": {
"@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-upgrade-help": "^3.0.1",
"@11tyrocks/eleventy-plugin-emoji-readtime": "^1.0.1",
"@11tyrocks/eleventy-plugin-lightningcss": "^1.4.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@sindresorhus/slugify": "^2.1.0",
"@thedigitalman/eleventy-plugin-toc-a11y": "^2.1.0",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"date-fns": "^4",
"elasticlunr": "^0.9.5",
"html-minifier-terser": "^7.2.0",
"jsdom": "^28.1.0",
"markdown-it": "^14",
"markdown-it-abbr": "^2",
"markdown-it-anchor": "^9",
"markdown-it-attrs": "^4.1.6",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-link-attributes": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"modern-css-reset": "^1.4.0",
"netlify-plugin-csp-generator": "^1.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-cli": "^11",
"rollup": "^4.24.0",
"slugify": "^1.6.5"
},
"devDependencies": {
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"eslint-plugin-simple-import-sort": "^12",
"modularscale-sass": "^3.0.10",
"prettier": "^3"
}
}