-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
86 lines (86 loc) · 2.53 KB
/
Copy pathdeno.json
File metadata and controls
86 lines (86 loc) · 2.53 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
{
"nodeModulesDir": "auto",
"tasks": {
"build": "vite build",
"cache": "deno cache --reload main.ts",
"check": "deno fmt --check . && deno lint . && deno check",
"dev": "vite",
"migrate": "deno run -A utils/db_migration.ts",
"migrate_down": "deno run -A utils/db_migration.ts --down",
"migrate_up": "deno run -A utils/db_migration.ts --up",
"start": "deno serve -A _fresh/server.js",
"update": "deno run -A -r jsr:@fresh/update ."
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"@/": "./",
"@components/": "./components/",
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.1.2",
"@islands/": "./islands/",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.1.12",
"@utils/": "./utils/",
"any": "https://deno.land/std@0.179.0/encoding/_yaml/utils.ts",
"chartjs": "https://cdn.skypack.dev/chart.js@4.4.7",
"cookie": "https://deno.land/std@0.224.0/http/cookie.ts",
"d3-geo": "npm:d3-geo@3.1.1",
"fresh": "jsr:@fresh/core@^2.3.3",
"i18n-iso-countries": "npm:i18n-iso-countries@^7.14.0",
"i18next": "https://deno.land/x/i18next@v24.2.3/index.js",
"i18next-browser-languagedetector": "npm:i18next-browser-languagedetector@8.0.4",
"iso-3166-1": "npm:iso-3166-1@2.1.1",
"ky": "https://esm.sh/ky@v1.7.5",
"kysely": "https://esm.sh/kysely@0.28.8",
"motion": "https://esm.sh/v135/framer-motion@12.4.7?external=react,react-dom&target=es2022",
"preact": "npm:preact@^10.27.2",
"preact/debug": "npm:preact@^10.27.2/debug",
"preact/hooks": "npm:preact@^10.27.2/hooks",
"preact/jsx-runtime": "npm:preact@^10.27.2/jsx-runtime",
"@preact/signals": "npm:@preact/signals@^2.5.0",
"react": "npm:preact@^10.27.2/compat",
"react-dom": "npm:preact@^10.27.2/compat",
"tailwindcss": "npm:tailwindcss@^4.1.10",
"tippyjs": "https://esm.sh/tippy.js@6.3.7",
"topojson-client": "npm:topojson-client@3.1.0",
"vite": "npm:vite@^7.1.3",
"world-atlas": "npm:world-atlas@^2.0.2"
},
"compilerOptions": {
"lib": [
"dom",
"dom.asynciterable",
"dom.iterable",
"deno.ns"
],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head",
"title",
"meta",
"script",
"link",
"style",
"base",
"noscript",
"template"
],
"types": [
"vite/client"
]
}
}