-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
96 lines (96 loc) · 2.55 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
90
91
92
93
94
95
96
{
"private": true,
"name": "patrickxin.com",
"description": "Personal website of Patrick Xin",
"author": {
"email": "[email protected]",
"name": "Patrick Xin",
"url": "https://patrickxin.com/"
},
"homepage": "https://patrickxin.com/",
"bugs": {
"url": "https://github.com/patrick-xin/patrickxin.com/issues"
},
"keywords": [
"tailwindcss",
"react",
"nextjs",
"portfolio",
"personal-site"
],
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@prisma/client": "^3.9.2",
"@vercel/analytics": "^0.1.2",
"contentlayer": "^0.2.5",
"feed": "^4.2.2",
"framer-motion": "^6.2.8",
"next": "^12.1.6",
"next-connect": "^0.12.1",
"next-contentlayer": "^0.2.5",
"next-seo": "^5.1.0",
"next-share": "^0.13.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-intersection-observer": "^8.33.1",
"react-query": "^3.34.15",
"rss": "^1.2.2",
"sharp": "^0.30.1",
"zustand": "^3.7.0"
},
"devDependencies": {
"@fontsource/dm-serif-display": "^4.5.1",
"@fontsource/fira-code": "^4.5.5",
"@fontsource/space-mono": "^4.5.1",
"@heroicons/react": "^1.0.5",
"@prettier/plugin-xml": "^1.2.0",
"@react-aria/overlays": "^3.7.5",
"@tsndr/cloudflare-worker-jwt": "^1.1.5",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"autoprefixer": "^10.4.0",
"bcrypt": "^5.0.1",
"boring-avatars": "^1.6.1",
"classnames": "^2.3.1",
"cookie": "^0.4.2",
"cuid": "^2.1.8",
"eslint": "8.9.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"globby": "^13.1.1",
"husky": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^12.3.4",
"next-sitemap": "^2.4.6",
"next-themes": "^1.0.0-beta.0",
"nprogress": "^0.2.0",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prisma": "^3.9.2",
"react-responsive": "^9.0.0-beta.6",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.1.0",
"rehype-prism-plus": "^1.3.2",
"rehype-slug": "^5.0.1",
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.1",
"tailwindcss": "^3.1.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn prettier --write"
]
}
}