-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"export": "next export",
"out": "pnpm run build && pnpm run export",
"start": "next start",
"lint": "next lint",
"tauri": "tauri"
},
"dependencies": {
"@auth/drizzle-adapter": "1.7.4",
"@tiptap/core": "2.8.0",
"@tiptap/extension-code-block-lowlight": "2.10.3",
"@tiptap/extension-image": "2.10.3",
"@tiptap/extension-link": "2.8.0",
"@tiptap/extension-text-align": "2.8.0",
"@tiptap/react": "2.8.0",
"@tiptap/starter-kit": "2.8.0",
"bcrypt": "5.1.1",
"better-sqlite3": "11.7.0",
"clsx": "2.1.1",
"dotenv": "16.4.7",
"drizzle-orm": "0.38.1",
"highlight.js": "11.11.1",
"lowlight": "3.2.0",
"lucide-react": "0.468.0",
"next": "15.1.5",
"next-auth": "5.0.0-beta.25",
"next-themes": "0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "2.5.5",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tauri-apps/cli": "^2.2.5",
"@types/bcrypt": "5.0.2",
"@types/better-sqlite3": "7.6.12",
"@types/highlight.js": "9.12.4",
"@types/node": "^20.17.14",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"drizzle-kit": "0.30.0",
"eslint": "^9",
"eslint-config-next": "15.1.5",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3"
}
}