-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
46 lines (46 loc) · 1.97 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
37
38
39
40
41
42
43
44
45
46
{
"imports": {
"@axe-core/playwright": "npm:@axe-core/playwright@^4.10.1",
"@commitlint/cli": "npm:@commitlint/cli@^19.6.0",
"@commitlint/config-conventional": "npm:@commitlint/config-conventional@^19.6.0",
"@commitlint/types": "npm:@commitlint/types@^19.5.0",
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
"@playwright/test": "npm:@playwright/test@^1.49.1",
"@radix-ui/react-dropdown-menu": "npm:@radix-ui/react-dropdown-menu@^2.1.2",
"@radix-ui/react-slot": "npm:@radix-ui/react-slot@^1.1.0",
"@types/react": "npm:@types/react@^18.3.11",
"@types/react-dom": "npm:@types/react-dom@^18.3.1",
"@vitejs/plugin-react-swc": "npm:@vitejs/plugin-react-swc@^3.7.1",
"autoprefixer": "npm:autoprefixer@^10.4.20",
"class-variance-authority": "npm:class-variance-authority@^0.7.0",
"clsx": "npm:clsx@^2.1.1",
"commitizen": "npm:commitizen@^4.3.1",
"cz-conventional-changelog": "npm:cz-conventional-changelog@^3.3.0",
"husky": "npm:husky@^9.1.7",
"lint-staged": "npm:lint-staged@^15.2.10",
"lucide-react": "npm:lucide-react@^0.460.0",
"postcss": "npm:postcss@^8.4.49",
"react": "npm:react@^18.3.1",
"react-dom": "npm:react-dom@^18.3.1",
"tailwind-merge": "npm:tailwind-merge@^2.5.4",
"tailwindcss": "npm:tailwindcss@^3.4.15",
"tailwindcss-animate": "npm:tailwindcss-animate@^1.0.7",
"vite": "npm:vite@^5.4.11",
"~/": "./src/"
},
"nodeModulesDir": "auto",
"tasks": {
"prepare": "deno run -A npm:husky",
"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/",
"e2e": "deno run -A npm:@playwright/test test"
},
"compilerOptions": {
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"jsxImportSource": "react",
"jsxImportSourceTypes": "@types/react"
}
}