-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.62 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
{
"name": "rummerlab",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint .",
"token": "ts-node --project tsconfig.script.json scripts/get-long-lived-token.ts",
"check-token": "ts-node --project tsconfig.script.json scripts/check-token.ts",
"resize-images": "ts-node --project tsconfig.script.json scripts/resize-images.ts"
},
"dependencies": {
"@next/third-parties": "16.2.3",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"cheerio": "^1.2.0",
"clsx": "^2.1.0",
"framer-motion": "^11.18.2",
"gray-matter": "^4.0.3",
"next": "16.2.3",
"next-sitemap": "^4.2.3",
"nodemailer": "^8.0.5",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-icons": "^5.6.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"rss-parser": "^3.13.0",
"sanitize-html": "^2.17.2",
"sharp": "^0.34.5",
"tailwind-merge": "^2.6.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20.19.39",
"@types/nodemailer": "^8.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "^2.16.1",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.3",
"postcss": "^8.5.9",
"tailwindcss": "^4.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"minimatch": "^10.2.1"
}
}