-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.28 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
{
"name": "portfolio-page",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "next lint --max-warnings=0",
"lint:fix": "next lint --fix",
"test": "next lint --max-warnings=0 && prettier --check . && tsc --noEmit",
"typecheck": "tsc"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@payloadcms/db-mongodb": "^3.27.0",
"@payloadcms/email-resend": "^3.27.0",
"@payloadcms/live-preview-react": "^3.27.0",
"@payloadcms/next": "^3.27.0",
"@payloadcms/payload-cloud": "^3.27.0",
"@payloadcms/richtext-lexical": "^3.27.0",
"@payloadcms/storage-uploadthing": "^3.27.0",
"@payloadcms/translations": "^3.28.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"cal-sans": "^1.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.11",
"graphql": "^16.8.1",
"lexical": "0.27.1",
"lucide-react": "^0.454.0",
"markdown-to-jsx": "^7.5.0",
"next": "15.4.10",
"next-intl": "^3.26.5",
"next-plausible": "^3.12.4",
"next-safe-action": "^7.9.9",
"next-themes": "^0.4.5",
"next-view-transitions": "^0.3.4",
"nextjs-google-analytics": "^2.3.7",
"payload": "^3.27.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"react-tweet": "^3.2.1",
"resend": "4.0.1-alpha.0",
"sharp": "^0.33.5",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.12",
"@types/node": "^20.17.23",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-google-recaptcha": "^2.1.9",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9",
"eslint-config-next": "15.4.8",
"postcss": "^8",
"prettier": "3.5.3",
"tailwindcss": "^4.0.12",
"typescript": "^5.6.2"
}
}