-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
15 lines (15 loc) · 957 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"tasks": {
"fetch:subjects": "deno run --allow-net --allow-read --allow-write ./fetcher/fetch-subjects.ts",
"fetch:courses": "deno run --allow-net --allow-read --allow-write ./fetcher/fetch-courses.ts",
"fetch:courses:2": "deno run --allow-net --allow-read --allow-write ./fetcher/fetch-courses.v2.ts",
"fetch:descriptions": "deno run --allow-net --allow-read --allow-write ./fetcher/fetch-descriptions.ts",
"fetch:coreqs": "deno run --allow-net --allow-read --allow-write ./fetcher/fetch-coreqs.ts",
"fetch:prereqs": "deno run --allow-net --allow-read --allow-write ./fetcher/fetch-prereqs.ts",
"combine-courses": "deno run --allow-read --allow-write ./fetcher/combine-courses.ts",
"mapping:term-courses": "deno run --allow-read --allow-write ./mappings/term-courses.ts",
"dev": "deno run --watch --allow-read --allow-net ./api/index.ts",
"fmt:data": "deno fmt ./.data"
},
"importMap": "./import_map.json"
}