-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.27 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
{
"name": "emergency-site",
"version": "1.0.0",
"description": "A boilerplate for emergency information websites",
"scripts": {
"build": "npm run clean && npm run fetch && cross-env ELEVENTY_ENV=production eleventy && npm run post-process",
"post-process": "node seo-image.js && node redirects.js",
"watch": "eleventy --watch",
"serve": "eleventy --serve",
"debug": "DEBUG=* eleventy",
"clean": "del-cli dist",
"fetch": "del-cli open-data && git clone https://github.com/Karuna2020/open-data && node open-data.js",
"start": "npm run clean && npm run serve"
},
"repository": {
"type": "git",
"url": "http://github.com/maxboeck/emergency-site"
},
"author": "Max Böck",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"clean-css": "^4.2.3",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
"dotenv": "^8.2.0",
"eleventy-plugin-pwa": "^1.0.8",
"eleventy-plugin-safe-external-links": "^0.1.5",
"htmlnano": "^0.2.9",
"luxon": "^1.28.0",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^7.1.0",
"node-html-to-image": "^3.2.0"
}
}