-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
33 lines (33 loc) · 1.54 KB
/
deno.jsonc
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
{
"tasks": {
"setup": "/bin/bash tasks.sh setup",
"start": "/bin/bash tasks.sh start",
"pm2": "/bin/bash tasks.sh pm2",
"check": "rm -rf ./cov_profile/ && deno test --coverage=cov_profile && deno coverage cov_profile --html"
},
"fmt": {
"indentWidth": 4,
"lineWidth": 120,
"semiColons": true,
"singleQuote": true,
"useTabs": false,
"exclude": ["./cov_profile/"]
},
"imports": {
"std/assert/assertion_error": "https://deno.land/std@0.215.0/assert/assertion_error.ts",
"std/assert/assert_equals": "https://deno.land/std@0.215.0/assert/assert_equals.ts",
"std/assert/assert_rejects": "https://deno.land/std@0.215.0/assert/assert_rejects.ts",
"std/assert_throws": "https://deno.land/std@0.215.0/assert/assert_throws.ts",
"std/encoding/base64": "https://deno.land/std@0.215.0/encoding/base64.ts",
"std/path": "https://deno.land/std@0.215.0/path/mod.ts",
"std/testing/mock": "https://deno.land/std@0.215.0/testing/mock.ts",
"std/uuid": "https://deno.land/std@0.215.0/uuid/mod.ts",
"x/sqlite": "https://deno.land/x/sqlite@v3.8/mod.ts",
"hono": "https://deno.land/x/hono@v4.0.4/mod.ts",
"hono/middleware": "https://deno.land/x/hono@v4.0.4/middleware.ts",
"hono/utils/http-status": "https://deno.land/x/hono@v4.0.4/utils/http-status.ts",
"ip-range-check": "npm:ip-range-check@0.2.0",
"mongo": "https://deno.land/x/mongo@v0.32.0/mod.ts",
"yaml": "npm:yaml@2.3.4"
}
}