-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
{
"name": "website-11ty-hamburg.stefanimhoff.de",
"version": "1.0.0",
"description": "Source code of my travel blog",
"main": "index.js",
"scripts": {
"build": "ELEVENTY_ENV=production npm-run-all build:assets build:html build:sw",
"build:assets": "gulp build",
"build:html": "eleventy",
"build:sw": "workbox generateSW workbox.config.js",
"clean": "npx del dist",
"debug": "DEBUG=* npx eleventy",
"dev": "ELEVENTY_ENV=development npm run watch",
"plop": "plop",
"prebuild": "pnpm run clean",
"prestart": "pnpm run clean",
"publish": "npm-run-all build deploy",
"start": "pnpm run dev",
"svg": "gulp svg",
"watch": "npm-run-all --parallel watch:*",
"watch:assets": "gulp",
"watch:html": "eleventy --serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kogakure/website-11ty-hamburg.stefanimhoff.de.git"
},
"keywords": [
"11ty"
],
"author": "Stefan Imhoff",
"license": "ISC",
"homepage": "https://hamburg.stefanimhoff.de",
"devDependencies": {
"@11ty/eleventy": "1.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"autoprefixer": "^10.2.5",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"cssnano": "^5.0.2",
"del-cli": "^3.0.1",
"eleventy-nbsp-filter": "^0.1.0",
"eleventy-plugin-lazyimages": "^2.1.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gulp": "^4.0.2",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprite": "^1.5.0",
"html-minifier": "^4.0.0",
"markdown-it": "^14.1.0",
"markdown-it-external-anchor": "^1.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"plop": "^2.7.4",
"postcss": "^8.2.13",
"postcss-cli": "^8.3.1",
"postcss-custom-media": "^8.0.0",
"postcss-custom-properties": "^11.0.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^14.0.1",
"postcss-media-minmax": "^5.0.0",
"postcss-nested": "^5.0.5",
"postcss-sort-media-queries": "^3.8.9",
"prettier": "^2.2.1",
"sal.js": "^0.8.4",
"stylelint": "^13.13.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-high-performance-animation": "^1.5.2",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"uglify-js": "^3.13.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"workbox-cli": "^6.1.5"
},
"dependencies": {
"@babel/core": "^7.0.0"
}
}