-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.99 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.99 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "devlinks",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=21.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"email": "email dev --port 3600",
"check:types": "tsc --pretty --noEmit",
"check:format": "prettier --check .",
"format": "npx prettier --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.9.1",
"@node-rs/argon2": "^2.0.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@radix-ui/react-alert-dialog": "^1.1.13",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-slot": "^1.1.1",
"@react-email/components": "0.0.30",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/typography": "^0.5.16",
"@uidotdev/usehooks": "^2.4.1",
"@uploadthing/react": "^7.1.5",
"@vercel/postgres": "^0.10.0",
"arctic": "^2.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cropperjs": "^1.6.2",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.38.3",
"drizzle-zod": "^0.6.1",
"input-otp": "^1.4.1",
"lucide-react": "^0.460.0",
"motion": "^12.9.2",
"next": "16.1.0",
"next-themes": "^0.4.4",
"nodemailer": "^6.9.16",
"react": "19.2.3",
"react-cropper": "^2.3.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.56.3",
"react-image-file-resizer": "^0.4.8",
"sharp": "^0.33.5",
"sonner": "^1.7.2",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^7.4.4",
"uuid": "^11.0.5",
"zod": "^3.23.8",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.11.10",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"drizzle-kit": "^0.30.1",
"eslint": "^9.18.0",
"eslint-config-next": "16.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react-email": "3.0.4",
"server-only": "^0.0.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}