-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
33 lines (33 loc) · 1.29 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
{
"nodeModulesDir": "auto",
"tasks": {
"build": "cd static && npx -y cnpm install && npm run build && cd ../ ",
"fmt": "deno fmt --config deno.json",
"lint": "deno lint --config deno.json",
"dev": "deno run -A --allow-net=:8000 ./main.tsx",
"check": "deno check ./main.tsx"
},
"imports": {
"@std/cli": "jsr:@std/cli@^1.0.14",
"@std/io": "jsr:@std/io@^0.225.2",
"jsr:@std/io/write-all": "https://jsr.io/@std/io/0.225.2/write_all.ts",
"jsr:@std/io/read-all": "https://jsr.io/@std/io/0.225.2/read_all.ts",
"jsr:@std/assert": "https://jsr.io/@std/assert/1.0.6/mod.ts",
"lodash-es": "npm:[email protected]",
"@std/assert": "jsr:@std/assert@^1.0.11",
"mongoose": "npm:[email protected]",
"node:test": "npm:@types/[email protected]/test.d.ts",
"net": "node:net",
"node:assert": "npm:@types/[email protected]/assert.d.ts",
"node:http2": "npm:@types/[email protected]/http2.d.ts",
"@hattip/response": "https://esm.sh/@hattip/[email protected]/",
"http": "node:http",
"@masx200/cache-control-parser": "https://esm.sh/@masx200/[email protected]/"
},
"fmt": {
"options": {
"indentWidth": 4,
"singleQuote": false
}
}
}