-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.01 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
{
"name": "2026-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"velite --watch\" \"next dev --turbopack\"",
"build": "bun run optimize-images && velite && next build && pagefind --site out --glob \"blog/**/*.html\"",
"build:audit": "bun run optimize-images && velite && INCLUDE_ALL=true next build && pagefind --site out --glob \"blog/**/*.html\"",
"start": "bunx serve@latest out",
"lint": "eslint ./src/",
"velite": "velite",
"optimize-images": "bunx tsx scripts/optimize-images.ts",
"deploy:pages": "bun run optimize-images && velite && next build && pagefind --site out --glob \"blog/**/*.html\" && wrangler pages deploy ./out --project-name=2026-portfolio-static",
"audit:lighthouse": "lhci autorun --config=.lighthouserc.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.0",
"@resvg/resvg-js": "^2.6.2",
"framer-motion": "^12.38.0",
"next": "^16.2.2",
"next-themes": "^0.4.6",
"plaiceholder": "^3.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"rehype-highlight": "^7.0.2",
"rehype-highlight-code-lines": "^1.2.2",
"satori": "^0.26.0",
"sharp": "^0.34.5",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"velite": "^0.3.1"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/unist": "^3.0.3",
"concurrently": "^9.2.1",
"eslint": "^10.2.0",
"eslint-config-next": "^16.2.2",
"pagefind": "^1.5.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"wrangler": "^4.81.0"
}
}