-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.29 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": "web-components-at-the-edge",
"version": "1.0.0",
"description": "Slides for my virtual track talk at OpenJS World 2022",
"main": "index.js",
"type": "module",
"author": "Owen Buckley <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/web-components-at-the-edge.git"
},
"keywords": [
"Web Components",
"Serverless",
"Edge computing",
"presentation",
"OpenJS World"
],
"scripts": {
"arc": "arc",
"netlify": "netlify",
"lint": "eslint \"*.*js\" \"./serverless/**/**/*.*js\" \"./netlify/**/**/*.*js\"",
"clean": "rimraf ./public ./.greenwood",
"demo:serverless": "export NODE_ENV=sandbox && arc sandbox",
"demo:edge": "npm run netlify dev",
"dev": "greenwood develop",
"build": "greenwood build",
"start": "npm run serve",
"serve": "npm run clean && npm run build && greenwood serve"
},
"devDependencies": {
"@architect/architect": "^10.3.3",
"@architect/functions": "^5.1.0",
"@greenwood/cli": "~0.29.0",
"@mapbox/rehype-prism": "^0.8.0",
"eslint": "^8.15.0",
"greenwood-starter-presentation": "~0.8.1",
"netlify-cli": "^10.3.1",
"node-fetch": "^3.2.4",
"rimraf": "^3.0.2",
"wc-compiler": "~0.6.0"
}
}