-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.75 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
{
"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",
"dev:convex": "convex dev",
"build": "bun run populateAlgolia && bun run generateRSS && bun run uploadsPostsToOpenAIStorage && bun run convex deploy --check-build-environment=disable && next build",
"start": "next start",
"dev:ts": "tsc --noEmit -w",
"generateRSS": "bun run script ./scripts/generateRSS.ts",
"uploadsPostsToOpenAIStorage": "bun run script ./scripts/openai/uploadPostsToStorage.ts",
"script": "ts-node --files --project ./scripts/tsconfig.json",
"populateAlgolia": "bun run script ./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/battletabs-enters-soft-launch",
"compress:one:webp": "optimizt --webp ./public/posts/mikebot"
},
"dependencies": {
"@artsy/fresnel": "^6.1.0",
"@funboxteam/optimizt": "^5.0.2",
"@types/isomorphic-fetch": "^0.0.36",
"@types/node-fetch": "^2.6.3",
"@types/ramda": "^0.29.1",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/rss": "^0.0.30",
"@vercel/analytics": "^1.3.1",
"algoliasearch": "^4.17.0",
"convex": "^1.16.5",
"convex-helpers": "^0.1.60",
"cross-env": "^7.0.3",
"csstips": "^1.2.0",
"csx": "^10.0.1",
"date-fns": "^2.30.0",
"fp-ts": "^2.14.0",
"gls": "^3.0.1",
"gray-matter": "^4.0.3",
"image-size": "^1.0.2",
"io-ts": "^2.2.20",
"isomorphic-fetch": "^3.0.0",
"ldrs": "^1.0.2",
"next": "^13.3.4",
"node-fetch": "^3.3.1",
"openai": "^4.67.3",
"posthog-js": "^1.138.0",
"ramda": "^0.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.13.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"react-use-scroll-position": "^2.0.0",
"rehype-raw": "^6.1.1",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"resend": "^4.0.0",
"rss": "^1.2.2",
"typestyle": "^2.4.0"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/showdown": "^2.0.1",
"broken-link-checker": "^0.7.8",
"concurrently": "^9.0.1",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"puppeteer": "^19.11.1",
"showdown": "^2.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
}
}