-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (33 loc) · 1.17 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
{
"name": "Eleventy-Blog",
"version": "0.2.2",
"description": "A starter project showing how to build a blog with the Eleventy static site generator using JavaScript templates.",
"main": "index.js",
"scripts": {
"build": "ELEVENTY_ENV=production node -r esm node_modules/.bin/eleventy",
"dev": "ELEVENTY_ENV=development node -r esm node_modules/.bin/eleventy --serve",
"debug": "DEBUG=* node -r esm node_modules/.bin/eleventy"
},
"repository": {
"type": "git",
"url": "git://github.com/andrewpap22/andreaspappas.git",
"https": "https://github.com/andrewpap22/andreaspappas.git",
"editUrl": "https://github.com/andrewpap22/andreaspappas/blob/main"
},
"author": "Andreas Pappas",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewpap22/andreaspappas/issues"
},
"homepage": "https://github.com/andrewpap22/andreaspappas",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"clean-css": "^4.2.3",
"esm": "^3.2.25",
"html-minifier": "^4.0.0",
"terser": "^5.5.1"
},
"dependencies": {
"clipboard": "^2.0.8"
}
}