-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
61 lines (61 loc) · 2.25 KB
/
deno.json
File metadata and controls
61 lines (61 loc) · 2.25 KB
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
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
"workspace": ["./db", "./client", "./api", "./types"],
"unstable": ["temporal", "kv", "raw-imports"],
"lint": {
"rules": {
"tags": ["recommended", "jsx", "jsr"],
"include": [
"default-param-last",
"eqeqeq",
"guard-for-in",
"no-await-in-loop",
"no-const-assign",
"no-self-compare",
"no-sparse-arrays",
"no-sync-fn-in-async-fn",
"no-throw-literal",
"no-undef",
"no-useless-rename"
],
"exclude": ["jsx-no-children-prop"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true
},
"imports": {
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
"@es-toolkit/es-toolkit": "jsr:@es-toolkit/es-toolkit@^1.42.0",
"@faker-js/faker": "npm:@faker-js/faker@^10.1.0",
"@hono/zod-validator": "npm:@hono/zod-validator@^0.7.5",
"@js-temporal/polyfill": "npm:@js-temporal/polyfill@^0.5.1",
"@libsql/client": "npm:@libsql/client@^0.15.15",
"@std/assert": "jsr:@std/assert@^1.0.16",
"@std/dotenv": "jsr:@std/dotenv@^0.225.5",
"@std/path": "jsr:@std/path@^1.1.3",
"@std/random": "jsr:@std/random@^0.1.4",
"@std/testing": "jsr:@std/testing@^1.0.16",
"@tanstack/router-plugin": "npm:@tanstack/router-plugin@^1.139.12",
"@tanstack/solid-form": "npm:@tanstack/solid-form@^1.27.0",
"@tanstack/solid-query": "npm:@tanstack/solid-query@^5.90.14",
"@tanstack/solid-query-devtools": "npm:@tanstack/solid-query-devtools@^5.91.1",
"@tanstack/solid-router": "npm:@tanstack/solid-router@^1.139.12",
"@tanstack/solid-router-devtools": "npm:@tanstack/solid-router-devtools@^1.139.12",
"better-auth": "npm:better-auth@^1.4.4",
"drizzle-kit": "npm:drizzle-kit@^0.31.7",
"drizzle-orm": "npm:drizzle-orm@^0.44.7",
"hono": "npm:hono@^4.10.7",
"resend": "npm:resend@^6.5.2",
"solid-js": "npm:solid-js@^1.9.10",
"solid-toast": "npm:solid-toast@^0.5.0",
"vite": "npm:vite@7.2.6",
"vite-plugin-solid": "npm:vite-plugin-solid@^2.11.10",
"vite-plugin-solid-svg": "npm:vite-plugin-solid-svg@^0.8.1",
"zod": "npm:zod@^4.1.13"
}
}