-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "dave-bitter-portfolio",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"postbuild": "tsx scripts/generate-api.ts && tsx scripts/export-og-images.ts",
"start": "next start",
"lint": "eslint .",
"optimize-images": "tsx scripts/optimize-images.ts",
"import-articles": "tsx scripts/import-articles.ts"
},
"dependencies": {
"@portabletext/react": "^6.0.3",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/themes": "^3.3.0",
"@sanity/image-url": "^2.0.3",
"@types/d3": "^7.4.3",
"d3": "^7.9.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"marked": "^17.0.4",
"marked-highlight": "^2.2.3",
"next": "^16.1.6",
"next-sanity": "^12.1.1",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
],
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"postcss": "^8.5.8",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}