-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
30 lines (30 loc) · 699 Bytes
/
deno.json
File metadata and controls
30 lines (30 loc) · 699 Bytes
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
{
"tasks": {
"dev": "deno run -A --watch=sr/static/,src/routes/ src/dev.ts",
"build": "deno run -A src/dev.ts build",
"start": "deno run -A src/main.ts",
"update": "deno run -A -r jsr:@fresh/update ."
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"@valibot/valibot": "jsr:@valibot/valibot@^0.42.1",
"chartjs": "https://esm.sh/chart.js@4.1.1",
"preact": "npm:preact@^10.24.1",
"tailwindcss": "npm:tailwindcss@^3.4.14"
},
"lock": false,
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"lint": {
"rules": {
"tags": [
"fresh"
]
}
},
"exclude": [
"**/_fresh/*"
]
}