-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
42 lines (42 loc) · 2.32 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"tasks": {
"build": "deno bundle backend/scheduler/jobs/daily.currencyupdate.ts dist/daily.currencyupdate.ts && deno bundle backend/scheduler/jobs/daily.outageupdate.ts dist/daily.outageupdate.ts && deno bundle backend/scheduler/jobs/daily.priceupdate.ts dist/daily.priceupdate.ts && deno bundle backend/scheduler/jobs/hourly.consumptionupdate.ts dist/hourly.consumptionupdate.ts && deno bundle backend/scheduler/jobs/hourly.productionupdate.ts dist/hourly.productionupdate.ts",
"dev": "deno run -A --unstable-ffi --watch=static/,routes/ dev.ts --no-schedules",
"debug": "deno task dev --debug",
"precommit": "deno fmt --check && deno lint && deno check main.ts && deno test",
"prod": "deno run -A --unstable-ffi main.ts",
"update-deps": "deno run --allow-read=. --allow-write=. --allow-net https://deno.land/x/udd/main.ts --dry-run deno.json",
"update-fresh": "deno run -A -r https://fresh.deno.dev/update .",
"preview": "deno run -A main.ts"
},
"fmt": { "exclude": ["components/", "islands/"], "lineWidth": 150 },
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"types": ["https://cdn.jsdelivr.net/npm/apexcharts@3.36.3/types/apexcharts.d.ts"]
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"@pup/telemetry": "jsr:@pup/telemetry@^1.0.7",
"backend/": "./backend/",
"components/": "./components/",
"config/": "./config/",
"croner": "https://deno.land/x/croner@8.1.0/dist/croner.js",
"entsoe_api_client": "https://deno.land/x/entsoe_api_client@1.0.1/mod.ts",
"fresh_seo": "https://deno.land/x/fresh_seo@1.0.1/mod.ts",
"islands/": "./islands/",
"localekit_fresh": "https://deno.land/x/localekit_fresh@0.5.2/mod.ts",
"preact": "https://esm.sh/preact@10.19.6",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2",
"preact/": "https://esm.sh/preact@10.19.6/",
"routes/": "./routes/",
"sqlite3": "https://deno.land/x/sqlite3@0.11.1/mod.ts",
"std/": "https://deno.land/std@0.224.0/",
"utils/": "./utils/",
"xml": "https://deno.land/x/xml@2.1.3/mod.ts"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"]
}