-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
122 lines (122 loc) · 3.7 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "mike-bifulco-blog",
"description": "Just a place for me to put it all out into the world - mikebifulco.com",
"version": "0.1.0",
"author": "Mike Bifulco <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build && next-sitemap",
"postbuild": "next-sitemap",
"dev": "NODE_OPTIONS='--inspect' next dev --turbo",
"email": "email dev --dir ./src/utils/email/templates",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "next start",
"test": "pnpm exec playwright test",
"lint": "next lint",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"dependencies": {
"@cloudinary/url-gen": "^1.21.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.5",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/bundle-analyzer": "^14.2.15",
"@next/mdx": "^14.2.15",
"@react-email/components": "^0.0.26",
"@t3-oss/env-core": "^0.11.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.59.19",
"@trpc/client": "11.0.0-rc.477",
"@trpc/next": "11.0.0-rc.477",
"@trpc/react-query": "11.0.0-rc.477",
"@trpc/server": "11.0.0-rc.477",
"@types/mdx": "^2.0.13",
"@types/semver": "^7.5.8",
"airtable": "^0.12.2",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"fathom-client": "^3.7.2",
"feed": "^4.2.2",
"framer-motion": "^11.11.11",
"gray-matter": "^4.0.3",
"lucide-react": "^0.454.0",
"mailchecker": "^6.0.11",
"micro": "^10.0.1",
"next": "^14.2.16",
"next-cloudinary": "^6.16.0",
"next-mdx-remote": "5.0.0",
"pluralize": "^8.0.0",
"postcss": "^8.4.47",
"posthog-js": "^1.180.1",
"posthog-node": "^4.2.1",
"prism-react-renderer": "^2.4.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-aria": "^3.35.1",
"react-dom": "^18.3.1",
"react-email": "3.0.2",
"react-icons": "^5.3.0",
"react-stately": "^3.33.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-img-size": "^1.0.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"resend": "^4.0.0",
"sass": "^1.80.6",
"sharp": "^0.33.5",
"superjson": "^2.2.1",
"svix": "^1.37.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@next/eslint-plugin-next": "^14.2.15",
"@playwright/test": "^1.48.2",
"@types/eslint": "^9.6.1",
"@types/node": "^22.8.7",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.2.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"github-slugger": "^2.0.0",
"jiti": "^2.4.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"schema-dts": "^1.1.2",
"tailwindcss": "^3.4.14",
"typescript": "5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/mbifulco/blog"
},
"bugs": {
"url": "https://github.com/mbifulco/blog/issues"
},
"eslintConfig": {
"root": true,
"extends": [
"./eslint.config.js"
]
}
}