-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.01 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@webdong/blog",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "paraglide-js compile --project ./project.inlang --outdir ./src\\paraglide && astro build && pagefind --site dist",
"build:staging": "astro build --mode staging && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"sync": "astro sync",
"typecheck": "astro check",
"lint": "eslint --ext .jsx,.tsx,.js,.ts,.astro src",
"prettier": "prettier -w src",
"lighthouse": "lhci autorun",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"postinstall": "paraglide-js compile --project ./project.inlang --outdir ./src\\paraglide"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.3",
"@astrojs/partytown": "^2.1.2",
"@astrojs/react": "^4.1.2",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@astrojs/vue": "^5.0.3",
"@inlang/paraglide-astro": "^0.2.2",
"@monaco-editor/react": "^4.6.0",
"@pagefind/default-ui": "^1.3.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@vercel/og": "^0.6.2",
"astro": "^5.1.1",
"astro-expressive-code": "^0.32.4",
"astro-icon": "^1.1.0",
"astro-seo": "^0.8.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.395.0",
"markdown-it": "^14.1.0",
"radix-vue": "^1.8.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.43.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^5.1.0",
"sanitize-html": "^2.11.0",
"sharp": "^0.31.3",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-fluid-type": "^2.0.3",
"typescript": "^5.4.3",
"uniqolor": "^1.1.0",
"vue": "^3.4.29"
},
"devDependencies": {
"@iconify-json/devicon-plain": "^1.1.36",
"@iconify-json/material-symbols": "^1.1.78",
"@iconify-json/simple-icons": "^1.1.99",
"@inlang/paraglide-js": "1.11.2",
"@lhci/cli": "^0.13.0",
"@tailwindcss/typography": "^0.5.8",
"@types/markdown-it": "^14.1.1",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^5.48.1",
"cypress": "^13.11.0",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-astro": "^0.21.1",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-prettier": "^4.2.1",
"hastscript": "^7.2.0",
"pagefind": "^1.2.0",
"prettier": "^2.8.2",
"prettier-plugin-astro": "^0.7.2",
"prettier-plugin-tailwindcss": "^0.2.7"
}
}