-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "loke.dev",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "astro dev --port 3000",
"build": "pnpm run content:check && astro build && node scripts/check-static-pages.mjs",
"audit": "node scripts/check-brace-expansion-patch.mjs && pnpm audit",
"content:check": "node scripts/check-public-copy.mjs",
"deploy": "pnpm run build && wrangler deploy",
"start": "astro preview",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"test:e2e": "playwright test",
"audit:lighthouse": "lhci autorun",
"cf-typegen": "wrangler types",
"typecheck": "astro check && tsc --noEmit",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:md": "markdownlint-cli2 README.md 'docs/**/*.md'",
"monitoring:status": "node --env-file=.env.monitoring scripts/monitoring-status.mjs",
"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/cloudflare": "^14.2.0",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/solid-js": "^7.0.2",
"@portabletext/to-html": "^5.0.2",
"@sanity/client": "^7.26.2",
"@sanity/image-url": "^2.1.1",
"@sanity/preview-url-secret": "^4.1.2",
"@sanity/webhook": "^4.0.4",
"@sentry/cloudflare": "^10.69.0",
"@shikijs/engine-javascript": "4.4.2",
"@shikijs/langs": "4.4.2",
"@shikijs/themes": "4.4.2",
"astro": "^7.2.0",
"clsx": "^2.1.1",
"posthog-js": "^1.414.0",
"resend": "^6.18.1",
"sharp": "^0.35.3",
"shiki": "^4.4.2",
"solid-js": "^1.9.14",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^9.39.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.62.1",
"@portabletext/types": "^4.0.2",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"esbuild": "^0.28.1",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"markdownlint-cli2": "^0.23.2",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.2",
"vite": "8.1.5",
"wrangler": "^4.119.0"
},
"packageManager": "pnpm@11.17.0",
"engines": {
"node": ">=22.22.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,mdx}": [
"prettier --write"
]
}
}