-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.29 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
{
"name": "piet.me",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"update-updates": "git submodule update --init --recursive --remote && git submodule foreach git pull origin main && npm run sync-images",
"watch:eleventy": "eleventy --config=eleventy.config.js --serve",
"watch:sass": "npm run sass -- --watch",
"start": "npm-run-all sass --parallel watch:*",
"clean": "rm -rf _site",
"sass": "sass --style=compressed --no-source-map _includes/stylesheets/main.scss _includes/stylesheets/main.css",
"prebuild": "npm run clean && npm run sync-images && ./_scripts/set-mtime && npm run sass",
"prestart": "npm run clean && npm run sync-images",
"sync-images": "rsync -r updates/media images",
"optimize-images": "node ./_scripts/optimize.js",
"build": "DEBUG='webmentions,config,Eleventy:EleventyErrorHandler' ELEVENTY_PRODUCTION=true eleventy --config=eleventy.config.js",
"webmentions": "webmention ./_site/feed.xml --debug",
"postbuild": "npm run optimize-images",
"lint": "eslint .",
"fmt": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pietvanzoen/piet.me.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pietvanzoen/piet.me/issues"
},
"homepage": "https://github.com/pietvanzoen/piet.me#readme",
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@remy/webmention": "^1.4.5",
"axios": "^0.21.1",
"dayjs": "^1.10.4",
"debug": "^4.3.4",
"dotenv": "^8.2.0",
"eleventy-plugin-embed-twitter": "^1.3.0",
"eleventy-plugin-local-images": "^0.4.0",
"html-minifier": "^4.0.0",
"lodash": "^4.17.21",
"markdown-it": "^12.0.6",
"open-graph-scraper": "^4.8.2",
"posthtml": "^0.16.6",
"posthtml-minify-classnames": "^0.3.0",
"query-string": "^6.14.1",
"sanitize-html": "^2.3.3",
"sass": "^1.45.1",
"sharp": "^0.26.3",
"unsplash-js": "^7.0.19"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}