-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
42 lines (42 loc) · 1.2 KB
/
deno.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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": {
"start": "deno run --allow-env --allow-read --allow-ffi --allow-net --allow-write --allow-run src/main.ts",
"debug": "deno run -A --inspect-brk src/main.ts",
"dev": "deno run -A --watch src/main.ts",
"migrate": "deno run -A scripts/migrate.ts",
"check": "deno check src/main.ts"
},
"imports": {
"@db/sqlite": "jsr:@db/sqlite@^0.12.0",
"@denorg/scrypt": "jsr:@denorg/scrypt@^4.4.4",
"@hono/hono": "jsr:@hono/hono@^4.7.7",
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@^1.0.12",
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
"@std/fs": "jsr:@std/fs@^1.0.16",
"@std/http": "jsr:@std/http@^1.0.14",
"@std/media-types": "jsr:@std/media-types@^1.1.0",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/uuid": "jsr:@std/uuid@^1.0.6"
},
"lint": {
"include": ["src/**/*.ts"],
"exclude": [],
"rules": {
"tags": ["recommended"],
"include": [
"no-unused-vars"
]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": ["src/**/*.ts"],
"exclude": ["src/templates/**/*.ts"]
}
}