-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
43
{
"name": "guestbook",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start --port 5000",
"lint": "prettier --check . && next lint",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@libsql/client": "0.4.0-pre.7",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-dialog": "^1.0.5",
"@tanstack/react-query": "^5.17.19",
"@vercel/analytics": "^1.1.2",
"clsx": "^2.1.0",
"drizzle-orm": "^0.29.3",
"next": "14.1.0",
"next-auth": "5.0.0-beta.5",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vercel/style-guide": "^5.1.0",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.20.13",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}