-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.11 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
{
"name": "personal-website",
"private": true,
"version": "0.0.1",
"description": "Personal website",
"main": "eleventy.config.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"clean:dev": "rm -rf dist_dev",
"eleventy:default": "npx eleventy",
"eleventy:serve": "npx eleventy --serve --incremental",
"eleventy:watch": "npx eleventy --watch --incremental",
"dev": "NODE_ENV=dev NODE_OPTIONS=--no-experimental-fetch run-s clean:dev eleventy:serve --print-label",
"dev:noclean": "NODE_ENV=dev NODE_OPTIONS=--no-experimental-fetch run-s eleventy:serve --print-label",
"dev:debug": "DEBUG=* npm run dev",
"build": "NODE_ENV=prod NODE_OPTIONS=--no-experimental-fetch run-s clean eleventy:default --print-label",
"build:noclean": "NODE_ENV=prod NODE_OPTIONS=--no-experimental-fetch run-s eleventy:default --print-label"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adueppen/personal-website.git"
},
"author": "Alex Dueppen",
"license": "SEE LICENSE IN README.md",
"bugs": {
"url": "https://github.com/adueppen/personal-website/issues"
},
"homepage": "https://github.com/adueppen/personal-website#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@aloskutov/eleventy-plugin-external-links": "^2.1.1",
"@csstools/postcss-sass": "^5.1.1",
"@pkvach/eleventy-plugin-pwa": "^2.0.0",
"@sindresorhus/slugify": "^2.2.1",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eleventy-img-helper": "^0.4.0",
"eleventy-plugin-metagen": "^1.8.3",
"esbuild": "^0.24.0",
"html-minifier": "^4.0.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-linkify-images": "^4.0.0",
"markdown-it-table-of-contents": "^0.8.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-scss": "^4.0.9",
"typescript": "^5.6.3",
"workbox-window": "^7.1.0"
}
}