-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
31 lines (31 loc) · 1.14 KB
/
deno.json
File metadata and controls
31 lines (31 loc) · 1.14 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
{
"tasks": {
"dev": "deno run -A npm:vite",
"build": "deno run -A npm:vite build",
"preview": "deno run -A npm:vite preview",
"serve": "deno run --allow-net --allow-read https://deno.land/std/http/file_server.ts dist/",
"deploy": "deno run -A npm:gh-pages -d dist"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"strict": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vite/client", "react", "react-dom"]
},
"nodeModulesDir": "auto",
"imports": {
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.5",
"@vitejs/plugin-react": "npm:@vitejs/plugin-react@^5.0.4",
"gh-pages": "npm:gh-pages@^6.3.0",
"react": "npm:react@^19.2.0",
"react-dom": "npm:react-dom@^19.2.0",
"react-dom/client": "npm:react-dom@^19.2.0/client",
"styled-components": "npm:styled-components@^6.1.19",
"@reduxjs/toolkit": "npm:@reduxjs/toolkit@^2.9.0",
"react-redux": "npm:react-redux@^9.2.0",
"@types/react": "npm:@types/react@^19.2.0",
"@types/react-dom": "npm:@types/react-dom@^19.2.0",
"@types/styled-components": "npm:@types/styled-components@^5.1.34"
}
}