-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
104 lines (104 loc) · 3.13 KB
/
deno.json
File metadata and controls
104 lines (104 loc) · 3.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"tasks": {
"build": "npx @tailwindcss/cli@next -i static/style.css -o static/style.compiled.css && deno run -A --env dev.js build",
"check": "deno fmt --check && deno lint && deno check **/*.js && deno check **/*.jsx",
"db:drizzle-generate": "deno task db:drizzle generate",
"db:drizzle-migrate": "deno task db:drizzle migrate",
"db:drizzle": "deno --env -A --node-modules-dir npm:drizzle-kit",
"db:migrate": {
"command": "deno run -A --env ./scripts/post-migrate.js",
"dependencies": [
"db:drizzle-migrate"
]
},
"db:generate": {
"command": "deno run -A --env ./scripts/post-generate.js",
"dependencies": [
"db:drizzle-generate"
]
},
"dev-tailwind": "deno run -A --watch=static/,routes/ --watch-exclude=static/style.css npm:@tailwindcss/cli@next -i static/style.css -o static/style.compiled.css",
"dev": "deno run -A --watch=routes/ --watch-exclude=static/style.css,static/style.compiled.css --env dev.js",
"init": "npm install",
"knip": "npx knip",
"lint": "npx eslint@9.19.0",
"start": "deno run -A --env main.js",
"update": "deno run -A -r jsr:@unabbreviated-fresh/update ."
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"@/_common/": "./_common/",
"@/database.js": "./database.js",
"@/database/schema.js": "./database/schema.js",
"@neon/serverless": "jsr:@neon/serverless@^0.10.4",
"@neondatabase/serverless": "npm:@neondatabase/serverless@^0.10.4",
"@radashi-org/radashi": "jsr:@radashi-org/radashi@^13.0.0-beta.ffa4778",
"@std/http": "jsr:@std/http@^1.0.13",
"@tailwindcss/cli": "npm:@tailwindcss/cli@^4.0.3",
"@fresh/plugin-tailwind": "jsr:@unabbreviated-fresh/plugin-tailwind@^0.0.1-alpha.7",
"@types/pg": "npm:@types/pg@^8.11.11",
"drizzle-kit": "npm:drizzle-kit@^0.30.4",
"drizzle-orm": "npm:drizzle-orm@^0.39.1",
"drizzle-zod": "npm:drizzle-zod@^0.7.0",
"fresh": "jsr:@unabbreviated-fresh/core@^2.0.0-alpha.29",
"preact": "npm:preact@^10.25.4",
"@preact/signals": "npm:@preact/signals@^2.0.1",
"tailwindcss": "npm:tailwindcss@^4.0.3",
"type-fest": "npm:type-fest@^4.33.0",
"zod": "npm:zod@^3.24.1",
"zod-validation-error": "npm:zod-validation-error@^3.4.0"
},
"fmt": {
"options": {
"useTabs": true,
"indentWidth": 1,
"singleQuote": false,
"lineWidth": 80,
"proseWrap": "never",
"semiColons": true
}
},
"nodeModulesDir": "auto",
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strictNullChecks": true,
"strict": true,
"strictPropertyInitialization": false,
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns",
"deno.unstable"
]
},
"unstable": [
"temporal",
"kv"
]
}