-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathdeno.json
47 lines (47 loc) · 1.66 KB
/
deno.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"lint": {
"rules": {
"tags": ["recommended"],
"include": [
"prefer-ascii",
"camelcase",
"eqeqeq",
"no-const-assign",
"no-eval",
"no-non-null-assertion",
"no-throw-literal",
"no-sparse-arrays",
"explicit-function-return-type",
"no-external-import"
]
}
},
"lock": false,
"tasks": {
"discord": "deno run -A --env update_commands.ts",
"dev": "concurrently \"deno run --watch --env -A start_dev.ts\" \"ngrok http 127.0.0.1:8000\"",
"dev-proddb": "concurrently \"deno run --watch --env -A start_dev.ts --remote\" \"ngrok http 127.0.0.1:8000\"",
"udd": "deno run -A https://deno.land/x/udd/main.ts deno.json"
},
"fmt": {
"useTabs": false,
"singleQuote": true,
"indentWidth": 2
},
"imports": {
"~/": "./",
"$std/": "https://deno.land/std@0.224.0/",
"dax": "https://deno.land/x/dax@0.39.2/mod.ts",
"ajv": "https://esm.sh/ajv@8.12.0",
"awesome-ajv": "https://esm.sh/awesome-ajv-errors@5.1.0",
"sentry": "https://raw.githubusercontent.com/timfish/sentry-deno/fb3c482d4e7ad6c4cf4e7ec657be28768f0e729f/mod.ts",
"tweetnacl": "https://esm.sh/tweetnacl@1.0.3",
"mongodb": "npm:mongodb",
"mongodb-memory-server": "npm:mongodb-memory-server-core@9.2.0",
"levenshtein": "https://deno.land/x/fastest_levenshtein@1.0.10/mod.ts",
"sift": "https://raw.githubusercontent.com/ker0olos/sift/89e31b5a08af007d51073af31050fc2205245dd3/mod.ts",
"search-index": "npm:@fable-community/search-index@0.2.8",
"images-proxy": "npm:@fable-community/images-proxy@0.1.5",
"dyn-images": "npm:@fable-community/dyn-images@0.1.2"
}
}