-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
35
36
37
38
39
40
41
{
"name": "my.website",
"version": "dev",
"description": "My personal site. Bootstrapped from philhawksworth/eleventyone",
"author": "Patrick Judge",
"license": "UNLICENSED",
"scripts": {
"start": "yarn run dev",
"dev": "gulp dev & ELEVENTY_ENV=dev eleventy --serve & yarn run dev:functions",
"build": "gulp build & ELEVENTY_ENV=dev eleventy && yarn run build:functions",
"seed": "gulp build & ELEVENTY_ENV=seed eleventy",
"build:functions": "netlify-lambda build src/lambda",
"dev:functions": "netlify-lambda serve src/lambda"
},
"repository": {
"type": "git",
"url": "https://github.com/phjudge/my.website"
},
"dependencies": {
"@11ty/eleventy": "^0.8.2",
"axios": "^0.18.0",
"concurrent-transform": "^1.0.0",
"dotenv": "^6.2.0",
"gootenberg": "^1.0.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-image-resize": "^0.13.0",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^3.0.0",
"html-minifier": "^3.5.21",
"luxon": "^1.11.1",
"netlify-lambda": "^1.3.1",
"nunjucks-date-filter": "^0.1.1",
"nunjucks-markdown-filter": "^0.1.0",
"require-dir": "^1.0.0",
"xml2js": "^0.4.19"
},
"resolutions": {
"terser": "3.14.*"
}
}