-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "EleventyOne",
"version": "2.0.0",
"description": "A project bootstrap for Eleventy sites. With pipelines for Sass, Js, and Lambdas",
"author": "Phil Hawksworth",
"license": "MIT",
"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/philhawksworth/eleventyone"
},
"dependencies": {
"@11ty/eleventy": "^0.7.1",
"axios": "^0.18.0",
"concurrent-transform": "^1.0.0",
"dotenv": "^6.2.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",
"require-dir": "^1.0.0",
"xml2js": "^0.4.19"
},
"resolutions": {
"terser": "3.14.*"
}
}