-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
{ | ||
"tasks": { | ||
"start": "deno run --allow-net --allow-read src/main.ts", | ||
"dev": "deno run --watch --allow-net --allow-read src/main.ts", | ||
"cache": "deno cache src/deps.ts", | ||
"check": "deno check src/main.ts", | ||
"start": "deno run --allow-net --allow-read main.ts", | ||
"dev": "deno run --watch --allow-net --allow-read main.ts", | ||
"cache": "deno cache deps.ts", | ||
"check": "deno check main.ts", | ||
"fmt": "deno fmt --watch .", | ||
"fmt:check": "deno fmt --check", | ||
"lint": "deno lint" | ||
}, | ||
"fmt": { | ||
"singleQuote": true | ||
"singleQuote": true, | ||
"semiColons": true | ||
}, | ||
"imports": { | ||
"hono/mod": "https://deno.land/x/[email protected]/mod.ts", | ||
"hono/middleware": "https://deno.land/x/[email protected]/middleware.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.