1234567891011121314151617181920212223242526272829 |
- {
- "nodeModulesDir": "auto",
- "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": "react",
- "jsxImportSourceTypes": "@types/react"
- },
- "imports": {
- "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
- "@types/react": "npm:@types/react@^18.3.12",
- "@types/react-dom": "npm:@types/react-dom@^18.3.1",
- "@vitejs/plugin-react-swc": "npm:@vitejs/plugin-react-swc@^3.7.1",
- "framer-motion": "npm:framer-motion@^11.15.0",
- "react": "npm:react@^18.3.1",
- "react-dom": "npm:react-dom@^18.3.1",
- "vite": "npm:vite@^6.0.1"
- }
- }
|