forked from ProjectEvergreen/greenwood-demo-adapter-vercel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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": "greenwood-demo-adapter-vercel",
"version": "1.0.0",
"description": "A demonstration repo for deploying a full-stack Greenwood app with Lit SSR, Vercel static hosting and Serverless + Edge functions",
"homepage": "https://github.com/ProjectEvergreen/greenwood-lit-ssr#readme",
"author": "Owen Buckley <owen@thegreenhouse.io>",
"license": "ISC",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/greenwood-lit-ssr.git"
},
"keywords": [
"Greenwood",
"Vercel",
"Web Components",
"Serverless",
"Edge",
"SSR",
"Lit"
],
"scripts": {
"clean": "rimraf public .greenwood .vercel",
"dev": "greenwood develop",
"build": "greenwood build",
"serve": "npm run clean && greenwood build && greenwood serve",
"start": "npm run serve"
},
"dependencies": {
"lit": "^3.1.0"
},
"devDependencies": {
"@greenwood/cli": "~0.30.0",
"@greenwood/plugin-adapter-vercel": "~0.30.0",
"@greenwood/plugin-renderer-lit": "~0.30.0",
"rimraf": "^5.0.0"
}
}