-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 KB
/
package.json
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
{
"name": "whatv2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@mdxeditor/editor": "^3.11.3",
"@neondatabase/serverless": "^0.9.5",
"@radix-ui/colors": "^3.0.0",
"arctic": "^1.9.2",
"drizzle-orm": "^0.33.0",
"lucia": "^3.2.0",
"lucide-react": "^0.438.0",
"next": "14.2.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20.16.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"drizzle-kit": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.7",
"postcss": "^8.4.44",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
}
}