-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
62 lines (62 loc) · 2.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"fmt": {
"indentWidth": 2,
"lineWidth": 200,
"semiColons": true,
"singleQuote": true,
"exclude": ["config/**/*.json", "app/**/*.json"]
},
"test": {
"include": [
"app/**/*.spec.ts",
"app/**/*.test.ts"
]
},
"tasks": {
"build": "deno run --unstable-cron -A interface/dev.ts build",
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"manifest": "deno task cli manifest $(pwd)",
"preview": "deno run --unstable-cron -A interface/main.ts",
"start": "deno run --unstable-cron -A --watch=interface/static/,interface/routes/ ./interface/dev.ts",
"test": "deno test --allow-read --allow-write --allow-net=deno.land",
"test-coverage": "deno test --allow-read --allow-write --coverage --allow-net=deno.land",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"watch-test": "deno test --watch --allow-read --allow-write"
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/datetime": "jsr:@std/[email protected]",
"@std/dotenv": "jsr:@std/[email protected]",
"@std/fmt": "jsr:@std/[email protected]",
"@std/http": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/[email protected]",
"@std/testing": "jsr:@std/[email protected]",
"bcrypt": "https://deno.land/x/[email protected]/mod.ts",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:[email protected]/",
"tailwindcss/colors": "npm:[email protected]/colors.js",
"tailwindcss/plugin": "npm:[email protected]/plugin.js",
"@shared/": "./app/shared/",
"@file/": "./app/file/",
"@interface/": "./interface/",
"@user/": "./app/user/"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"lint": {
"rules": {
"tags": ["fresh", "recommended"]
}
}
}