-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.7 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.7 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "monark-website",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run generate:project-index && npm run generate:news-index && npm run generate:project-tech-links && next build",
"start": "next start",
"lint": "next lint",
"generate:project-index": "bun scripts/project/project-index.script.ts",
"generate:project-tech-links": "bun scripts/link-tech-names.ts",
"generate:project-translations": "bun scripts/project/project-translate.script.ts",
"generate:news-index": "bun scripts/news/news-index.script.ts",
"generate:news-translations": "bun scripts/news/news-translate.script.ts"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@beehiiv/sdk": "^0.1.7",
"@formatjs/intl-localematcher": "^0.6.0",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.2",
"@next/third-parties": "^15.1.7",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@types/dotenv": "^6.1.1",
"@vercel/analytics": "^1.5.0",
"@web3icons/react": "^4.0.21",
"@xyflow/react": "^12.4.3",
"accept-language": "^3.0.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookies-next": "^6.1.0",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.5",
"lucide-react": "^0.475.0",
"md5": "^2.3.0",
"next": "^15.5.12",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"next-view-transitions": "^0.3.4",
"nprogress": "^0.2.0",
"octokit": "^5.0.3",
"openai": "^4.98.0",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^2.0.7",
"sugar-high": "^0.9.3",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/js-cookie": "^3.0.6",
"@types/mailchimp__mailchimp_marketing": "^3.0.21",
"@types/md5": "^2.3.5",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/nprogress": "^0.2.3",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"postcss": "^8",
"sass": "^1.85.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}