-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 749 Bytes
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
{
"name": "first-netlify-deploy",
"version": "1.0.0",
"scripts": {
"start": "eleventy --serve & yarn run start:lambda",
"build": "eleventy & yarn run build:lambda",
"start:lambda": "netlify-lambda serve src/lambda",
"build:lambda": "netlify-lambda build src/lambda"
},
"repository": {
"type": "git",
"url": "https://github.com/netlify/my-first-few-deploys"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.5.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.0",
"clean-css": "^4.2.1",
"netlify-lambda": "^1.0.2"
},
"proxy": {
"/.netlify/functions": {
"target": "http://localhost:9000",
"pathRewrite": {
"^/\\.netlify/functions": ""
}
}
}
}