-
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) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 824 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": "comments-engine-example",
"version": "1.0.0",
"author": "Phil Hawksworth",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn run build:local && yarn run watch",
"build": "gulp build && yarn run build:functions",
"gen": "gulp generate",
"gather": "gulp get:comments",
"build:local": "gulp build:local && yarn run build:functions",
"build:functions": "netlify-lambda build src/lambda",
"watch": "gulp watch & gulp serve",
"check": "gulp check-init"
},
"dependencies": {
"@11ty/eleventy": "^0.8.3",
"dotenv": "^8.1.0",
"gravatar": "^1.8.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^4.0.2",
"gulp-serve": "^1.4.0",
"gulp-shell": "^0.7.1",
"netlify-lambda": "^1.6.2"
}
}