-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "afterword-eleventy",
"version": "1.0.0",
"private": true,
"description": "Eleventy site for Afterword powered by Ghost plus local BookWyrm and Album Whale syncs",
"main": ".eleventy.js",
"scripts": {
"start": "npm run dev",
"dev": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"sync:albumwhale": "node scripts/sync-albumwhale-to-local.js",
"sync:bookwyrm": "node scripts/sync-bookwyrm-to-local.js",
"sync:content": "node scripts/sync-content.js",
"prebuild": "npm run sync:content",
"build": "cross-env ELEVENTY_ENV=prod eleventy",
"test": "npm run build",
"lint": "eslint . --ext .js --cache",
"deploy": "npm run build && wrangler deploy",
"preview": "npm run build && wrangler dev"
},
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tryghost/admin-api": "^1.0.0",
"cross-env": "^7.0.0",
"dotenv": "^8.0.0",
"html-minifier": "^4.0.0",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"eslint": "7.32.0",
"wrangler": "^4.72.0"
}
}