-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "eleventy-netlify-boilerplate",
"version": "1.0.1",
"description": "A boilerplate for building a fast static website with the Eleventy static site generator, for deployment to Netlify.",
"scripts": {
"build": "NODE_ENV=development npx eleventy",
"netlify-build": "NODE_ENV=development npx eleventy",
"watch": "npx eleventy --watch",
"debug": "DEBUG=* npx eleventy"
},
"repository": {
"type": "git",
"url": "/~https://github.com/danurbanowicz/eleventy-netlify-boilerplate"
},
"author": {
"name": "Dan Urbanowicz",
"email": "dan.urbanowicz@gmail.com",
"url": "https://www.danurbanowicz.com/"
},
"license": "MIT",
"bugs": {
"url": "/~https://github.com/danurbanowicz/eleventy-netlify-boilerplate/issues"
},
"homepage": "/~https://github.com/danurbanowicz/eleventy-netlify-boilerplate",
"devDependencies": {
"@11ty/eleventy": "^0.8.0",
"luxon": "^1.21.2",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^5.2.5",
"tap-spot": "^1.1.1"
},
"dependencies": {
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"clean-css": "^4.2.1",
"dotenv": "^8.2.0",
"html-minifier": "^3.5.21",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"uglify-es": "^3.3.9"
}
}