-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.66 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.66 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "chrisbradley.dev",
"version": "1.0.0",
"type": "module",
"engines": {
"node": "^24",
"npm": "^11"
},
"description": "Chris Bradley's personal website",
"author": "Chris Bradley <contact@chrisbradley.dev> (https://chrisbradley.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisbradleydev/chrisbradley.dev.git"
},
"license": "GPL-3.0-only",
"scripts": {
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"dev": "next dev --turbo",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,css,html,json}\" --cache",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,css,html,json}\" --cache",
"prepare": "husky",
"lint": "eslint .",
"lint-staged": "lint-staged",
"start": "next start"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{css,html,json}": [
"prettier --write"
]
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.100.2",
"@trpc/client": "^11.16.0",
"@trpc/next": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"@vercel/postgres": "^0.10.0",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"gray-matter": "^4.0.3",
"mdx-bundler": "^10.1.1",
"next": "^16.2.4",
"next-auth": "5.0.0-beta.31",
"postgres": "^3.4.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"reading-time": "^1.5.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.5",
"superjson": "^2.2.6",
"three": "^0.184.0",
"unified": "^11.0.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@tailwindcss/postcss": "^4.2.4",
"@types/eslint": "^9.6.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.4.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.5.10",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
}
}