-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
35 lines (35 loc) · 951 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
28
29
30
31
32
33
34
35
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"imports": {
"@std/assert": "jsr:@std/[email protected]",
"@std/async": "jsr:@std/[email protected]",
"@std/encoding": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/testing": "jsr:@std/[email protected]",
"autoprefixer": "npm:[email protected]",
"date-fns": "npm:[email protected]",
"hono": "jsr:@hono/[email protected]",
"postcss/": "https://deno.land/x/[email protected]/",
"redis": "npm:[email protected]",
"tailwindcss": "npm:[email protected]"
},
"tasks": {
"start": "deno run --allow-env --allow-net --allow-read --allow-write --allow-sys --env --watch main.ts",
"test": "deno test src/"
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"useTabs": true,
"indentWidth": 4,
"singleQuote": true
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx"
}
}