-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.08 KB
/
package.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@ct3a/www",
"version": "0.0.1",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"clean": "rm -rf node_modules .turbo dist .eslintcache",
"format": "prettier --write --plugin-search-dir=. **/*.{cjs,mjs,ts,tsx,md,json,astro} --ignore-path ../.gitignore",
"format:check": "prettier --check --plugin-search-dir=. **/*.{cjs,mjs,ts,tsx,md,json,astro} --ignore-path ../.gitignore",
"lint": "eslint src --report-unused-disable-directives",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@algolia/client-search": "^4.24.0",
"@astrojs/image": "^0.14.1",
"@astrojs/mdx": "^0.16.2",
"@astrojs/sitemap": "^1.4.0",
"@astrojs/vercel": "^3.8.2",
"@docsearch/css": "^3.6.1",
"@docsearch/react": "^3.6.1",
"@fontsource/inter": "^4.5.15",
"@fontsource/jetbrains-mono": "^4.5.12",
"@headlessui/react": "^1.7.19",
"@vercel/analytics": "^0.1.11",
"canvas-confetti": "^1.9.3",
"clsx": "^1.2.1",
"embla-carousel": "^7.1.0",
"embla-carousel-autoplay": "^7.1.0",
"sharp": "^0.31.3",
"tailwind-scrollbar": "^2.1.0",
"treeify": "^1.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@astrojs/react": "^2.3.2",
"@astrojs/tailwind": "^3.1.3",
"@types/node": "^18.19.50",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@types/react-typist": "^2.0.6",
"@types/treeify": "^1.0.3",
"@typescript-eslint/parser": "^5.62.0",
"astro": "^2.10.15",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.8.1",
"prettier-plugin-tailwindcss": "^0.2.8",
"react": "^18.3.1",
"react-dom": "18.2.0",
"react-typist": "^2.0.5",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^2.1.0",
"rehype-slug": "^5.1.0",
"remark-code-titles": "^0.1.2",
"tailwindcss": "^3.4.12",
"typescript": "^4.9.5"
}
}