-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "vortex",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.13",
"engines": {
"node": ">=22",
"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": {
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.4",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^2.0.1",
"feed": "^5.2.1",
"next": "16.2.4",
"next-plausible": "^4.0.0",
"ogl": "^1.0.11",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"rehype-pretty-code": "^0.14.3",
"resend": "^6.12.2",
"use-scramble": "^2.2.15",
"velite": "^0.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "4.2.3",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tailwindcss": "4.2.3",
"typescript": "^6.0.3"
},
"overrides": {
"postcss": "8.5.10",
"mdast-util-to-hast": "^13.2.1"
}
}