-
Notifications
You must be signed in to change notification settings - Fork 124
/
deno.json
27 lines (27 loc) · 1011 Bytes
/
deno.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
{
"tasks": {
"start": "deno task bundle && DECO_SITE_NAME=fashion deno run -A --unstable --watch=static/sw.js,tailwind.css,sections/,functions/,loaders/,actions/,workflows/,accounts/ dev.ts",
"gen": "deno run -A dev.ts --gen-only",
"component": "deno eval 'import \"$live/scripts/component.ts\"'",
"release": "deno eval 'import \"$live/scripts/release.ts\"'",
"update": "deno eval 'import \"$live/scripts/update.ts\"'",
"check": "deno fmt && deno lint && deno check dev.ts main.ts",
"install": "deno eval 'import \"$live/scripts/apps/install.ts\"'",
"uninstall": "deno eval 'import \"$live/scripts/apps/uninstall.ts\"'",
"bundle": "deno eval 'import \"$live/scripts/apps/bundle.ts\"' deco-sites/fashion"
},
"githooks": {
"pre-commit": "check"
},
"exclude": [
"node_modules",
"static/",
"README.md"
],
"nodeModulesDir": true,
"importMap": "./import_map.json",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}