-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
126 lines (126 loc) · 3.44 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
123
124
125
126
{
"name": "newsletter-ai-search",
"version": "0.0.1",
"private": true,
"description": "TODO",
"author": "Travis Fischer <[email protected]>",
"repository": "transitive-bullshit/newsletter-ai-search",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"pre-commit": "lint-staged",
"cron": "run-s cron:*",
"cron:newsletter": "tsx src/bin/resolve-beehiiv-newsletter.ts",
"cron:process": "tsx src/bin/process-newsletter-links.ts",
"cron:upsert-pinecone": "tsx src/bin/upsert-newsletter-links.ts",
"test": "run-p test:*",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"dependencies": {
"@vercel/analytics": "^0.1.11",
"clsx": "^1.2.1",
"dequal": "^2.0.3",
"framer-motion": "^10.9.1",
"meilisearch": "^0.31.1",
"next": "^13.2.4",
"next-themes": "^0.2.1",
"openai": "^3.2.1",
"p-map": "^5.5.0",
"pinecone-client": "^1.1.0",
"quick-lru": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.7.2",
"react-spinners": "^0.13.8",
"react-tweet-embed": "^2.0.0",
"react-use": "^17.4.0",
"rehype-format": "^4.0.1",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.2",
"swr": "^2.1.1",
"timeago.js": "^4.0.2",
"tiny-invariant": "^1.3.1",
"twemoji-parser": "^14.0.0",
"unified": "^10.1.2",
"unstated-next": "^1.1.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@google-cloud/storage": "^6.9.4",
"@next/bundle-analyzer": "^13.2.4",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/mdast": "^3.0.11",
"@types/node": "^18.15.10",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"@types/rmfr": "^2.0.2",
"autoprefixer": "^10.4.14",
"ava": "^5.2.0",
"cheerio": "1.0.0-rc.12",
"delay": "^5.0.0",
"dotenv-safe": "^8.2.0",
"escape-goat": "^4.0.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"got": "^12.6.0",
"html-to-md": "^0.8.3",
"husky": "^8.0.3",
"is-relative-url": "^4.0.0",
"lint-staged": "^13.2.0",
"lodash.deburr": "^4.1.0",
"mdast": "^3.0.0",
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-to-string": "^3.1.1",
"normalize-url": "^8.0.0",
"npm-run-all": "^4.1.5",
"p-memoize": "^7.1.1",
"p-retry": "^5.1.2",
"p-throttle": "^5.0.0",
"papaparse": "^5.4.1",
"plur": "^5.1.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.7",
"probe-image-size": "^7.2.3",
"puppeteer": "^19.8.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"remark-inline-links": "^6.0.1",
"rmfr": "^2.0.0",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.6",
"twitter-api-v2": "^1.14.2",
"typescript": "^5.0.2",
"typescript-plugin-css-modules": "^5.0.0",
"unist-util-inspect": "^7.0.2",
"unist-util-visit": "^4.1.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"keywords": [
"newsletter",
"search",
"beehiv",
"openai",
"pinecone",
"ai",
"vector",
"embedding"
]
}