-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.19 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.19 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
94
95
{
"name": "next-mikecann",
"version": "0.2.0",
"private": true,
"engines": {
"node": "20"
},
"scripts": {
"dev": "concurrently --names \"next,convex\" --prefix-colors \"cyan,magenta\" \"bun run dev:next\" \"bun run dev:convex\"",
"dev:next": "next dev --turbopack",
"dev:convex": "convex dev",
"build": "next build --turbopack",
"build-and-deploy": "bun run populateAlgolia && bun run generateRSS && bun run convex deploy --check-build-environment=disable && bun run uploadsPostsToConvex && next build --turbopack",
"start": "next start",
"dev:ts": "tsc --noEmit -w",
"generateRSS": "bun run ./scripts/generateRSS.ts",
"fixFlashLinks": "bun run ./scripts/fixFlashPlayableLinks.ts",
"uploadsPostsToConvex": "bun run ./scripts/uploadPostsToConvex.ts",
"populateAlgolia": "bun run ./scripts/populateAlgolia.ts",
"checkLinks": "bun run blc http://localhost:3000 -ro --exclude https://www.linkedin.com/in/mikecann",
"compress:all:lossless": "optimizt --lossless ./public",
"compress:one:lossless": "optimizt --lossless ./public/posts/google-photos-picker-sync",
"compress:one:webp": "optimizt --webp ./public/posts/i-tried-the-limitless-ai-and-omi-ai-so-you-dont-have-to",
"test": "vitest run",
"dev:test": "vitest"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.77",
"@artsy/fresnel": "^8.4.0",
"@convex-dev/agent": "^0.3.2",
"@convex-dev/agent-playground": "^0.0.20",
"@convex-dev/rag": "^0.6.1",
"@funboxteam/optimizt": "^5.0.2",
"@types/isomorphic-fetch": "^0.0.39",
"@types/node-fetch": "^2.6.13",
"@types/ramda": "^0.31.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/rss": "^0.0.32",
"@vercel/analytics": "^1.6.1",
"ai": "^5.0.106",
"algoliasearch": "^5.45.0",
"convex": "^1.34.0",
"convex-helpers": "^0.1.106",
"cross-env": "^10.1.0",
"csstips": "^1.2.0",
"csx": "^10.0.2",
"date-fns": "^4.1.0",
"fluent-convex": "^0.12.3",
"fp-ts": "^2.16.11",
"gls": "^3.0.1",
"gray-matter": "^4.0.3",
"image-size": "^2.0.2",
"io-ts": "^2.2.22",
"isomorphic-fetch": "^3.0.0",
"ldrs": "^1.1.9",
"next": "^16.0.7",
"node-fetch": "^3.3.2",
"posthog-js": "^1.301.0",
"ramda": "^0.32.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-icons": "^5.5.0",
"react-intersection-observer": "^10.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"react-use-scroll-position": "^2.0.0",
"rehype-raw": "^7.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"resend": "^6.5.2",
"rss": "^1.2.2",
"typestyle": "^2.4.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@types/bun": "^1.3.3",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/showdown": "^2.0.6",
"broken-link-checker": "^0.7.8",
"concurrently": "^9.2.1",
"convex-test": "^0.0.41",
"dotenv": "^17.2.3",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"pretty-quick": "^4.2.2",
"puppeteer": "^24.32.0",
"showdown": "^2.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}