-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.16 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.16 KB
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
{
"name": "loke.dev",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "astro dev --port 3000",
"build": "astro build",
"start": "astro preview",
"typecheck": "astro check && tsc --noEmit",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"format": "prettier --write \"**/*.{ts,tsx,astro,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,astro,md,json}\"",
"prepare": "husky",
"studio": "pnpm --dir studio dev"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"@astrojs/solid-js": "^6.0.1",
"@astrojs/vercel": "^10.0.4",
"@google/genai": "^1.48.0",
"@portabletext/to-html": "^5.0.2",
"@sanity/client": "^7.14.0",
"@sanity/image-url": "^2.0.3",
"@sanity/webhook": "^4.0.4",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^2.0.0",
"astro": "^6.1.3",
"clsx": "^2.1.1",
"cron-parser": "^5.5.0",
"resend": "^6.0.2",
"sharp": "^0.34.5",
"shiki": "^3.21.0",
"solid-js": "^1.9.12",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^9.34.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.2.2",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"esbuild": "^0.21",
"eslint": "^9.34.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.2",
"vite": "7.3.1"
},
"pnpm": {
"overrides": {
"vite": "7.3.1"
},
"patchedDependencies": {
"vite@7.3.1": "patches/vite@7.3.1.patch"
}
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,mdx}": [
"prettier --write"
]
}
}