-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
144 lines (144 loc) · 4.74 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"generateSitemap": "next-sitemap",
"generateRSS": "tsx src/scripts/rss.ts",
"postbuild": "npm run generateSitemap && npm run generateRSS",
"start": "next start",
"typecheck": "tsc",
"tweet": "tsx src/scripts/tweet.ts",
"renameFiles": "tsx src/scripts/renameFiles.ts",
"addDatesToNewsletters": "tsx src/scripts/addDatesToNewsletters.ts",
"uploadWithMetadataToS3": "tsx src/scripts/aws/uploadWithMetadataToS3.ts",
"warmupS3Cache": "tsx src/scripts/aws/warmupS3Cache.ts",
"createImageMetadataJson": "tsx src/scripts/createImageMetadataJson.ts",
"sendNewsletter": "tsx src/scripts/sendNewsletter.ts",
"createRedirects": "tsx src/scripts/createRedirects.ts",
"fixFolderPaths": "tsx src/scripts/aws/fixFileNames.ts",
"rewriteWikilinks": "tsx src/scripts/rewriteWikilinks.ts",
"addGraymatterInformation": "tsx src/scripts/addGraymatterInformation.ts",
"vercel-install": "./vercel-submodule-workaround.sh && npm install --production=false",
"replaceExcerpts": "tsx src/scripts/replaceExcerpts.ts"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "^3.215.0",
"@headlessui/react": "^2.2.0",
"@next/bundle-analyzer": "^15.1.2",
"@react-hook/window-size": "^3.1.1",
"@react-three/fiber": "^8.9.1",
"clsx": "^2.1.1",
"date-fns": "2.21.3",
"form-data": "^4.0.0",
"framer-motion": "^11.15.0",
"fuzzysort": "^3.1.0",
"handlebars": "^4.7.7",
"mailgun.js": "^8.0.1",
"motion": "^11.15.0",
"nanoid": "^5.0.9",
"next": "^14.2.15",
"next-seo": "^4.26.0",
"next-themes": "^0.2.1",
"react": "^18.3.1",
"react-confetti": "^6.1.0",
"react-confetti-explosion": "^2.1.2",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"react-infinite-scroller": "^1.2.6",
"react-markdown": "^8.0.3",
"react-modal": "^3.16.1",
"react-photo-album": "^2.2.2",
"react-slider": "^2.0.4",
"simple-react-canvas-component": "^0.1.14",
"three": "^0.146.0",
"use-local-storage-state": "^19.4.0",
"yet-another-react-lightbox": "^3.9.0"
},
"devDependencies": {
"@aws-sdk/client-lambda": "^3.427.0",
"@sindresorhus/slugify": "^2.2.1",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/react": "^13.4.0",
"@tsconfig/node16": "^1.0.3",
"@types/cli-progress": "^3.11.0",
"@types/inquirer": "^9.0.3",
"@types/mime": "^3.0.1",
"@types/node": "^22.7.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^17.0.5",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-modal": "^3.16.1",
"@types/react-slider": "^1.3.1",
"@types/three": "^0.146.0",
"@types/yargs": "^17.0.33",
"autoprefixer": "^10.4.14",
"axios": "^1.5.1",
"case": "^1.6.3",
"cheerio": "^1.0.0-rc.11",
"cli-progress": "^3.12.0",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"esbuild": "^0.24.0",
"eslint": "7.32.0",
"eslint-config-next": "^13.0.4",
"feed": "^4.2.2",
"glob": "^10.3.10",
"gray-matter": "4.0.3",
"htmlparser2": "^8.0.1",
"image-size": "^1.0.2",
"inquirer": "^9.2.11",
"jsdom": "^19.0.0",
"mime": "^2.5.2",
"mongodb": "^5.1.0",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.2.3",
"next-transpile-modules": "^9.0.0",
"p-limit": "^6.1.0",
"postcss": "^8.4.23",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.1",
"rehype-parse": "^9.0.1",
"rehype-preset-minify": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-rewrite": "^4.0.2",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"rehype-unwrap-images": "^1.0.0",
"rehype-urls": "^1.2.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-math": "^6.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"remark-toc": "^9.0.0",
"slugify": "^1.6.6",
"tailwindcss": "^3.3.2",
"threads": "^1.7.0",
"to-vfile": "^7.2.3",
"tsx": "^4.7.1",
"twitter-api-v2": "^1.12.7",
"typescript": "^5.1.0",
"unified": "^11.0.5",
"velite": "^0.2.0",
"vercel-submodules": "^1.0.10",
"yargs": "^17.7.2"
},
"overrides": {
"@opentelemetry/api": "1.4.1",
"@opentelemetry/core": "1.13.0",
"@opentelemetry/exporter-trace-otlp-grpc": "0.39.1",
"@opentelemetry/resources": "1.13.0",
"@opentelemetry/sdk-trace-base": "1.13.0",
"@opentelemetry/sdk-trace-node": "1.13.0",
"@opentelemetry/semantic-conventions": "1.13.0"
}
}