-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
43
44
{
"name": "EleventyOne",
"version": "1.0.1",
"description": "A project bootstrap for Eleventy sites. With pipelines for Sass, Js, and Lambdas",
"author": "Phil Hawksworth",
"license": "MIT",
"scripts": {
"gen": "gulp generate",
"start": "yarn run build && yarn run serve",
"build": "gulp build && yarn run build:functions",
"build:local": "gulp build:local",
"build:functions": "netlify-lambda build src/lambda",
"serve": "gulp watch & gulp serve & netlify-lambda serve src/lambda"
},
"repository": {
"type": "git",
"url": "https://github.com/philhawksworth/eleventyone"
},
"dependencies": {
"@11ty/eleventy": "^0.5.2",
"concurrent-transform": "^1.0.0",
"gravatar": "^1.6.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-image-resize": "^0.13.0",
"gulp-rename": "^1.3.0",
"gulp-sass": "^3.1.0",
"gulp-serve": "^1.4.0",
"gulp-shell": "^0.6.5",
"gulp-uglify": "^3.0.0",
"netlify-lambda": "^0.2.0",
"pump": "^3.0.0",
"require-dir": "^1.0.0"
},
"proxy": {
"/.netlify/functions": {
"target": "http://localhost:9000",
"pathRewrite": {
"^/\\.netlify/functions": ""
}
}
}
}