forked from stampchain-io/stampchain.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
51 lines (51 loc) · 2.07 KB
/
deno.json
File metadata and controls
51 lines (51 loc) · 2.07 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
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"start": "deno run -A main.ts",
"dev": "export ENV=development && deno run -A --watch=static/,routes/,components/,islands/ dev.ts --host",
"build": "deno run -A dev.ts build",
"docs": "deno run --allow-read --allow-write swagger.js",
"fakebuild": "echo 'fake build'",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"nodeModulesDir": true,
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"$std/": "https://deno.land/std@0.212.0/",
"bigfloat/": "https://deno.land/x/bigfloat@v3.0.2/",
"@iconify/react": "npm:@iconify/react@4.1.1",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"buffer": "https://deno.land/std@0.177.0/node/buffer.ts",
"$mysql/": "https://deno.land/x/mysql@v2.12.1/",
"$dayjs/": "https://esm.sh/dayjs@1.11.10/",
"$fresh_charts/": "https://deno.land/x/fresh_charts@0.3.1/",
"compress": "https://deno.land/x/foras@v2.1.4/src/deno/mod.ts",
"bitcoin": "npm:bitcoinjs-lib@6.1.5",
"base64/": "https://denopkg.com/chiefbiiko/base64/",
"bitcore": "npm:bitcore@4.1.1",
"crypto": "https://deno.land/std@0.177.0/node/crypto.ts",
"$lib/": "./lib/",
"$islands/": "./islands/",
"$components/": "./components/",
"constants": "./lib/utils/constants.ts",
"utils/": "./lib/utils/",
"store/": "./lib/store/",
"hooks/": "./islands/hooks/",
"globals": "./globals.d.ts",
"$/": "./"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "https://esm.sh/preact"
}
}