-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
26 lines (26 loc) · 832 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
{
"tasks": {
"dev": "deno run --allow-net --allow-env --allow-read --watch --env-file apps/api/main.ts"
},
"workspace": [
"./apps/api",
"./packages/schema-faker",
"./packages/zod",
"./packages/env"
],
"fmt": {
"singleQuote": true
},
"imports": {
"@apidevtools/json-schema-ref-parser": "npm:@apidevtools/json-schema-ref-parser@^11.7.3",
"@faker-js/faker": "npm:@faker-js/faker@^9.3.0",
"@hono/zod-validator": "npm:@hono/zod-validator@^0.4.2",
"@scalar/hono-api-reference": "npm:@scalar/hono-api-reference@^0.5.165",
"@types/json-schema": "npm:@types/json-schema@^7.0.15",
"hono": "npm:hono@^4.6.14",
"hono-openapi": "npm:hono-openapi@^0.2.1",
"json-schema": "npm:json-schema@^0.4.0",
"zod": "npm:zod@3.24.1",
"zod-openapi": "npm:zod-openapi@^4.2.0"
}
}