-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.49 KB
/
package.json
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
{
"name": "chrisbradley.dev",
"version": "1.0.0",
"type": "module",
"engines": {
"node": "^20",
"npm": "^10"
},
"description": "Chris Bradley's personal website",
"author": "Chris Bradley <[email protected]> (https://chrisbradley.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisbradleydev/chrisbradley.dev.git"
},
"license": "GPL-3.0-only",
"scripts": {
"build": "next build",
"db:push": "drizzle-kit push:pg",
"db:studio": "drizzle-kit studio",
"dev": "next dev",
"lint": "next lint",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "next lint --fix",
"**/*.{js,jsx,ts,tsx,md,html,css,scss}": "prettier --write"
},
"dependencies": {
"@auth/drizzle-adapter": "^0.8.2",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^1.0.6",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-query-devtools": "^5.28.10",
"@trpc/client": "next",
"@trpc/next": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@vercel/postgres": "^0.7.2",
"@vercel/speed-insights": "^1.1.0",
"clsx": "^2.1.0",
"drizzle-orm": "^0.30.4",
"gray-matter": "^4.0.3",
"mdx-bundler": "^10.0.1",
"next": "^14.1.4",
"next-auth": "^4.24.7",
"postgres": "^3.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.2",
"superjson": "^2.2.1",
"three": "^0.170.0",
"unified": "^11.0.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@types/eslint": "^8.56.7",
"@types/node": "^20.11.28",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/three": "^0.170.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"autoprefixer": "^10.4.18",
"drizzle-kit": "^0.20.14",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
}
}