-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
21 lines (21 loc) · 949 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/testing/mock": "jsr:@std/testing/mock",
"@std/testing/bdd": "jsr:@std/testing/bdd",
"std/collections/chunk": "https://deno.land/[email protected]/collections/chunk.ts",
"sleep": "https://deno.land/x/[email protected]/mod.ts",
"std/flags": "https://deno.land/[email protected]/flags/mod.ts",
"std/fmt/colors": "https://deno.land/[email protected]/fmt/colors.ts",
"std/fs": "https://deno.land/[email protected]/fs/mod.ts",
"std/path": "https://deno.land/[email protected]/path/mod.ts",
"@db/sqlite": "jsr:@db/[email protected]"
},
"tasks": {
"run": "deno run --allow-ffi --unstable-ffi --allow-env --allow-net=api.airtable.com --allow-read --allow-write=. ./src/main.ts ",
"backup": "deno task run --backup",
"test": "deno test --allow-read=./tests/",
"update:delete": "deno task run --remove"
}
}