-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.64 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
{
"name": "zackproser-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/check-metadata.js && node scripts/generate-collections.js && node scripts/create-vector-db-comparison-posts.js && node scripts/create-ai-assisted-dev-tools-comparison-post.js && node scripts/create-ai-assisted-dev-tools-comparison-pages.js",
"build": "npm run prebuild && next build",
"build-only": "next build",
"start": "next start",
"lint": "next lint",
"debug-comparisons": "node scripts/create-ai-assisted-dev-tools-comparison-pages.js --debug",
"check-metadata": "node scripts/check-metadata.js",
"debug-metadata": "node scripts/check-metadata.js --debug"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@ai-sdk/openai": "^1.0.11",
"@auth/pg-adapter": "^0.6.0",
"@babel/parser": "^7.25.3",
"@babel/traverse": "^7.25.3",
"@dqbd/tiktoken": "^1.0.13",
"@giscus/react": "^3.0.0",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.1.1",
"@mapbox/rehype-prism": "^0.9.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.16",
"@next/third-parties": "^14.1.0",
"@pinecone-database/pinecone": "^2.2.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.0",
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.3.0",
"@types/gtag.js": "^0.0.19",
"@types/lodash.debounce": "^4.0.9",
"@types/mdx": "^2.0.9",
"@types/node": "^20.4.7",
"@types/react": "^18.2.18",
"@types/stripe": "^8.0.417",
"@types/ua-parser-js": "^0.7.39",
"@vercel/analytics": "1.2.2",
"@vercel/og": "^0.5.11",
"@vercel/postgres": "^0.5.1",
"@vercel/speed-insights": "^1.0.7",
"ai": "^4.0.22",
"autoprefixer": "^10.4.17",
"axios": "^1.7.9",
"braces": "^3.0.3",
"chalk": "^5.3.0",
"chart.js": "^4.4.4",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"date-fns": "^3.3.1",
"fast-glob": "^3.2.11",
"feed": "^4.2.2",
"handlebars": "^4.7.8",
"js-tiktoken": "^1.0.10",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.395.0",
"micromatch": "^4.0.8",
"next": "^15.1.3",
"next-auth": "5.0.0-beta.25",
"next-router-mock": "^0.9.3",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.9",
"openai": "^4.28.4",
"openai-edge": "^1.2.2",
"postcss-focus-visible": "^9.0.1",
"postmark": "^4.0.2",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.2.1",
"react-stripe-js": "^1.1.5",
"react-tweet": "^3.1.1",
"recharts": "^2.12.7",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"remark-toc": "^9.0.0",
"sharp": "^0.32.6",
"stripe": "^14.12.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.1.6",
"ua-parser-js": "^1.0.38",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.16",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.2"
}
}