-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
28 lines (28 loc) · 970 Bytes
/
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
{
"tasks": {
"dev": "deno run -A --node-modules-dir npm:vite",
"build": "deno run -A --node-modules-dir npm:vite build",
"preview": "deno run -A --node-modules-dir npm:vite preview",
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
},
"compilerOptions": {
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": true,
"imports": {
"@babel/plugin-transform-react-jsx-development": "npm:@babel/plugin-transform-react-jsx-development@^7.25.9",
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
"@preact/preset-vite": "npm:@preact/preset-vite@^2.9.1",
"@tanstack/react-query": "npm:@tanstack/react-query@^5.59.15",
"babel-plugin-transform-hook-names": "npm:babel-plugin-transform-hook-names@^1.0.2",
"msw": "npm:msw@^2.5.0",
"preact": "npm:preact@^10.24.3",
"vite": "npm:vite@^5.4.9"
}
}