-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
54 lines (54 loc) · 2.2 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
{
"tasks": {
"dev": "deno run fe:dev & deno run be:dev",
"fe:dev": "deno run -A --node-modules-dir npm:vite",
"fe:build": "deno run -A --node-modules-dir npm:vite build",
"fe:preview": "deno run -A --node-modules-dir npm:vite preview",
"fe:serve": "deno run --allow-net --allow-read vite_server.ts",
"be:dev": "deno run --allow-all --watch --env-file --unstable-cron main.ts",
"be:scrape": "deno run --allow-all --env-file utils/scrape/run.ts",
"be:deploy": "deployctl deploy --prod --env-file=.env --project=naijastars-api --exclude=./node_modules --exclude=./dist --exclude=./src --exclude=./.vite main.ts"
},
"compilerOptions": {
"lib": ["ES2020", "DOM", "DOM.Iterable"]
},
"nodeModulesDir": "auto",
"imports": {
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.48",
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.1",
"@hono-rate-limiter/cloudflare": "npm:@hono-rate-limiter/cloudflare@^0.2.1",
"@hono-rate-limiter/redis": "npm:@hono-rate-limiter/redis@^0.1.4",
"@neon/serverless": "jsr:@neon/serverless@^0.10.4",
"@ptm/mm-mark": "jsr:@ptm/mm-mark@^0.2.22",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@sveltejs/vite-plugin-svelte": "npm:@sveltejs/vite-plugin-svelte@^5.0.1",
"@upstash/redis": "npm:@upstash/redis@^1.34.3",
"autoprefixer": "npm:autoprefixer@^10.4.20",
"bits-ui": "npm:bits-ui@^0.21.16",
"clsx": "npm:clsx@^2.1.1",
"detect-url-change": "npm:detect-url-change@^1.0.2",
"lucide-svelte": "npm:lucide-svelte@^0.462.0",
"mode-watcher": "npm:mode-watcher@^0.5.0",
"postcss": "npm:postcss@^8.4.49",
"shadcn-svelte": "npm:shadcn-svelte@^0.14.0",
"svelte": "npm:svelte@^5.2.9",
"svelte-headless-table": "npm:svelte-headless-table@^0.18.3",
"svelte-routing": "npm:svelte-routing@^2.13.0",
"tailwind-merge": "npm:tailwind-merge@^2.5.5",
"tailwind-variants": "npm:tailwind-variants@^0.3.0",
"tailwindcss": "npm:tailwindcss@^3.4.15",
"vite": "npm:vite@^6.0.1"
},
"deploy": {
"project": "c7d9d063-6f1a-4ca7-aafe-335f9ca26e97",
"exclude": [
"./node_modules",
"./dist",
"./src",
"./.vite",
"**/node_modules"
],
"include": [],
"entrypoint": "main.ts"
}
}