-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
36 lines (36 loc) · 1.08 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
{
"imports": {
"hono": "jsr:@hono/hono@^4.6.16",
"@saleor/app-sdk": "npm:@saleor/app-sdk@0.0.0-pr-20250110173426",
"@types/react": "npm:@types/react@^18.3.12",
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.2",
"@vitejs/plugin-react": "npm:@vitejs/plugin-react@^4.3.3",
"react": "npm:react@^18.3.1",
"react-dom": "npm:react-dom@^18.3.1",
"react-router-dom": "npm:react-router-dom@^6.28.0",
"vite": "npm:vite@^5.4.11"
},
"tasks": {
"dev": "deno run -A --node-modules-dir=auto npm:vite",
"build": "deno run -A --node-modules-dir=auto npm:vite build",
"server:start": "deno run -A --node-modules-dir --unstable-kv --env-file=.env --watch ./server/main.tsx",
"serve": "deno task build && deno task server:start",
"generate": "graphql-codegen-esm"
},
"compilerOptions": {
"types": [
"react",
"react-dom",
"@types/react"
],
"lib": [
"dom",
"dom.iterable",
"deno.ns",
"deno.unstable"
],
"jsx": "react-jsx",
"jsxImportSource": "react",
"jsxImportSourceTypes": "@types/react"
}
}