-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.37 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
{
"name": "vortex",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.4.0",
"engines": {
"node": ">=24",
"bun": ">=1.3.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "biome lint",
"format": "biome format --write",
"format:check": "biome format",
"check": "biome check --write",
"check:ci": "biome check",
"typecheck": "tsc --noEmit",
"verify": "bun scripts/verify.ts",
"lighthouse": "lhci autorun",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium webkit"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.20",
"@vercel/analytics": "^2.0.1",
"feed": "^6.0.0",
"next": "16.3.3",
"next-plausible": "^4.0.0",
"ogl": "^1.0.11",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rehype-pretty-code": "^0.14.5",
"resend": "^6.19.0",
"velite": "^0.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "4.3.3",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"tailwindcss": "4.3.3",
"typescript": "^7.0.2"
},
"trustedDependencies": [
"esbuild",
"sharp"
],
"overrides": {
"sharp": "^0.35.3"
}
}