-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.21 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-htmx",
"version": "1.0.0",
"description": "A demonstration repo for using Greenwood with htmx, hosted on Vercel.",
"homepage": "https://github.com/thescientist13/greenwood-htmx#readme",
"author": "Owen Buckley <[email protected]>",
"license": "ISC",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/greenwood-htmx.git"
},
"keywords": [
"Greenwood",
"Web Components",
"HTML",
"htmx",
"Vercel",
"Serverless",
"SSR"
],
"scripts": {
"clean": "rimraf .greenwood public .vercel",
"dev": "node --loader ./node_modules/@greenwood/cli/src/loader.js ./node_modules/.bin/greenwood develop",
"build": "node --loader ./node_modules/@greenwood/cli/src/loader.js ./node_modules/.bin/greenwood build",
"serve": "npm run clean && npm run build && node --loader ./node_modules/@greenwood/cli/src/loader.js ./node_modules/.bin/greenwood serve",
"start": "npm run serve"
},
"dependencies": {
"htmx.org": "^2.0.0"
},
"devDependencies": {
"@greenwood/cli": "~0.30.0",
"@greenwood/plugin-adapter-vercel": "~0.30.0",
"@greenwood/plugin-import-raw": "~0.30.0",
"rimraf": "^5.0.1"
}
}