-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "portfolio",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "bunx --bun next dev --turbopack",
"build": "bunx --bun next build",
"start": "bunx --bun next start",
"lint": "bunx --bun eslint",
"format": "bunx --bun prettier --write \"**/*.{ts,tsx}\"",
"typecheck": "bunx --bun tsc --noEmit"
},
"dependencies": {
"@heroui/react": "^3.0.4",
"@heroui/styles": "^3.0.4",
"@tanstack/react-hotkeys": "^0.10.0",
"@valibot/i18n": "^1.2.0",
"@wrksz/themes": "^0.9.2",
"daisyui": "^5.5.19",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^1.14.0",
"next": "16.2.6",
"next-intl": "^4.11.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-email": "^6.1.1",
"resend": "^6.12.3",
"valibot": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.3.0",
"@types/bun": "^1.3.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@react-email/components": "1.0.12",
"@react-email/render": "2.0.8"
}
}