forked from madrilene/lenesaile.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "lenesaile.com",
"version": "1.2.8",
"engines": {
"node": ">=20.x"
},
"license": "CC BY-SA",
"description": "My freelancing website built with Eleventy. It supports three languages and uses my latest workflow, as of autumn 2022.",
"main": ".eleventy.js",
"scripts": {
"clean": "rimraf dist",
"dev:postcss": "postcss src/assets/css/global.css --o src/_includes/global-inline.css --watch --verbose",
"dev:scripts-inline": "esbuild src/assets/scripts/theme-toggle.js --watch --outfile=src/_includes/theme-toggle-inline.js",
"dev:scripts-hydrated": "esbuild src/assets/scripts/hydrated/*.js --bundle --minify --outdir=dist/assets/scripts/hydrated",
"dev:11ty": "eleventy --serve --watch",
"build:postcss": "NODE_ENV=production postcss src/assets/css/global.css -o src/_includes/global-inline.css",
"build:scripts-inline": "NODE_ENV=production esbuild src/assets/scripts/theme-toggle.js --bundle --minify --outfile=src/_includes/theme-toggle-inline.js",
"build:scripts-hydrated": "NODE_ENV=production esbuild src/assets/scripts/hydrated/*.js --bundle --minify --outdir=dist/assets/scripts/hydrated",
"build:11ty": "cross-env ELEVENTY_ENV=production eleventy",
"build:sw": "workbox generateSW",
"start": "run-p dev:*",
"build": "run-s clean build:*"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/madrilene/lenesaile.com.git"
},
"author": "Lene Saile",
"dependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-plugin-bundle": "^1.0.4",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/is-land": "^4.0.0",
"gsap": "^3.11.3",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@toycode/markdown-it-class": "^1.2.4",
"autoprefixer": "^10.4.13",
"clean-css": "^5.3.1",
"cross-env": "^7.0.3",
"cssnano": "^6.0.0",
"dayjs": "^1.11.5",
"dotenv": "^16.0.3",
"esbuild": "^0.20.0",
"glob": "^10.3.3",
"html-minifier": "^4.0.0",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^8.6.5",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"markdown-it-toc-done-right": "^4.2.0",
"netlify-plugin-cache": "^1.0.3",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"postcss": "^8.4.8",
"postcss-cli": "^11.0.0",
"postcss-csso": "^6.0.1",
"postcss-custom-media": "^10.0.0",
"postcss-import": "^16.0.0",
"postcss-import-ext-glob": "^2.0.1",
"postcss-js": "^4.0.0",
"postcss-nesting": "^12.0.1",
"prettier": "^3.0.1",
"rimraf": "^5.0.0",
"sanitize-html": "^2.7.2",
"slugify": "^1.6.5",
"terser": "^5.16.1",
"workbox-cli": "^7.0.0"
}
}