-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "tomheaton.dev",
"version": "1.0.0",
"private": true,
"description": "My personal website, built with Next.js and Tailwind CSS.",
"repository": "https://github.com/tomheaton/tomheaton.dev",
"license": "MIT",
"author": {
"name": "Tom Heaton",
"email": "tom@tomheaton.dev",
"url": "https://tomheaton.dev"
},
"scripts": {
"build": "next build",
"clean": "rm -rf .next node_modules",
"dev": "next dev",
"format": "biome format --write",
"lint": "biome check",
"lint:ci": "biome ci",
"lint:fix": "biome check --fix --unsafe",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"next": "16.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.6.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^24.12.0",
"@types/number-to-words": "^1.2.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
}
}