-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 901 Bytes
/
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
{
"name": "greenwood-demo-adapter-aws",
"version": "1.0.0",
"description": "A demonstration repo for deploying a full-stack Greenwood app with AWS static hosting and serverless functions.",
"homepage": "https://github.com/ProjectEvergreen/greenwood-demo-adapter-aws#readme",
"author": "Owen Buckley <[email protected]>",
"license": "ISC",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectEvergreen/greenwood-demo-adapter-aws.git"
},
"keywords": [
"Greenwood",
"AWS",
"WCC",
"Web Components",
"Serverless",
"SSR"
],
"scripts": {
"clean": "rimraf public .greenwood",
"dev": "greenwood develop",
"build": "greenwood build",
"serve": "greenwood build && greenwood serve",
"start": "npm run serve"
},
"devDependencies": {
"@greenwood/cli": "~0.30.0",
"rimraf": "^5.0.0"
}
}