-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
21 lines (21 loc) · 976 Bytes
/
deno.json
File metadata and controls
21 lines (21 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"nodeModulesDir": "auto",
"tasks": {
"dev": "deno run --allow-net --allow-read --allow-sys --env-file=.env --allow-env --watch --allow-write --allow-run --allow-ffi main.ts",
"start": "deno run --allow-read --allow-net --allow-sys --allow-write --allow-run --allow-env --allow-ffi main.ts",
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.1/mod.ts",
"seed": "deno run --allow-net --allow-env --env-file=.env --allow-write seed.ts",
"test": "deno test --allow-env --allow-read --allow-sys --allow-ffi"
},
"imports": {
"@oak/oak": "jsr:@oak/oak@^17.1.4",
"@std/assert": "jsr:@std/assert@1",
"cors": "https://deno.land/x/cors/mod.ts",
"mongoose": "npm:mongoose@^8.10.0",
"bcrypt": "https://deno.land/x/bcrypt/mod.ts",
"redis": "npm:redis@^4.5",
"denoMailer": "https://deno.land/x/denomailer@1.6.0/mod.ts",
"sharp": "npm:sharp@0.33.5",
"sinon": "npm:sinon@19.0.2"
}
}