-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
20 lines (20 loc) · 839 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"tasks": {
"dev": "deno run --env=.env.local --watch --allow-read --allow-net --allow-env main.ts",
"start": "deno run --allow-read --allow-env --allow-net main.ts",
"test": "deno test --allow-read --allow-env --allow-net",
"db:migration": "deno run --allow-read --allow-env --allow-net db_migration/seed.ts"
},
"imports": {
"@db/sqlite": "jsr:@db/sqlite@^0.11.1",
"@oak/oak": "jsr:@oak/oak@^16.1.0",
"@std/assert": "jsr:@std/assert@^0.226.0",
"@std/csv": "jsr:@std/csv@^0.224.3",
"@std/log": "jsr:@std/log@^0.224.2",
"@std/testing": "jsr:@std/testing@^0.225.2",
"bcrypt": "https://deno.land/x/bcrypt@v0.4.1/mod.ts",
"djwt": "https://deno.land/x/djwt@v3.0.1/mod.ts",
"mysql": "https://deno.land/x/mysql@v2.12.1/mod.ts",
"zod": "https://deno.land/x/zod@v3.16.1/mod.ts"
}
}