-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "website",
"version": "2.0.0",
"author": {
"name": "Nathan Thomas",
"url": "https://www.nathanthomas.dev"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/nwthomas/website.git"
},
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"export": "next export",
"lint": "eslint",
"preinstall": "npx only-allow bun",
"postinstall": "bun ./fonts/init.ts",
"start": "next start"
},
"dependencies": {
"@mdx-js/loader": "3.1.1",
"@mdx-js/react": "3.1.1",
"@next/mdx": "16.1.1",
"@reduxjs/toolkit": "2.10.1",
"@sentry/nextjs": "10.32.1",
"@types/mdx": "2.0.13",
"@vercel/analytics": "1.6.1",
"@vercel/speed-insights": "1.3.1",
"clsx": "2.1.1",
"focus-trap-react": "11.0.4",
"geist": "1.5.1",
"next": "16.1.1",
"next-seo": "7.0.1",
"postcss": "8.5.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-redux": "9.2.0",
"redis": "5.10.0",
"typescript": "5.9.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "16.0.3",
"@sparticuz/chromium": "141.0.0",
"@tailwindcss/postcss": "4.1.18",
"@tailwindcss/typography": "0.5.19",
"@types/express": "5.0.5",
"@types/node": "24.10.1",
"@types/react": "19.2.3",
"@types/react-redux": "7.1.34",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "9.39.1",
"eslint-config-next": "16.1.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react-hooks": "7.0.1",
"next-sitemap": "2.1.15",
"playwright-core": "1.56.1",
"prettier": "3.7.1",
"tailwindcss": "4.1.18"
},
"engines": {
"node": "24"
}
}