-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
28 lines (28 loc) · 946 Bytes
/
deno.json
File metadata and controls
28 lines (28 loc) · 946 Bytes
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
{
"tasks": {
"dev": "deno run --watch --allow-net --allow-env --allow-run --allow-read main.ts",
"prod": "deno run --allow-net --allow-env --allow-read main.ts",
"db": "deno --env -A --node-modules-dir npm:drizzle-kit"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.13",
"@types/express": "npm:@types/express@^5.0.3",
"@types/express-serve-static-core": "npm:@types/express-serve-static-core@^5.0.7",
"bullmq": "npm:bullmq@^5.58.7",
"drizzle-orm": "npm:drizzle-orm@^0.44.2",
"drizzle-zod": "npm:drizzle-zod@^0.8.2",
"http-status-codes": "npm:http-status-codes@^2.3.0",
"jose": "npm:jose@^6.0.11",
"pg": "npm:pg@^8.16.3",
"express": "npm:express@^5.1.0",
"postgres": "npm:postgres@^3.4.7",
"zod": "npm:zod@^4.0.5",
"zod-validation-error": "npm:zod-validation-error@^3.5.3",
"@/": "./src/"
},
"compilerOptions": {
"types": [
"./types/*.d.ts"
]
}
}