-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
130 lines (130 loc) · 4.03 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "readium-x",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"check": "pnpm lint && pnpm typecheck && pnpm format:check",
"test": "vitest",
"db:push": "drizzle-kit push --config=drizzle.config.ts",
"db:migrate": "node -r esbuild-register ./server/db/migrate.ts",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"db:studio": "drizzle-kit studio",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"eslint --fix",
"prettier --write",
"tsc-files --noEmit"
],
"*.{js,jsx,json}": [
"prettier --write"
]
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@libsql/client": "^0.7.0",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@node-rs/argon2": "^1.8.3",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@react-email/components": "^0.0.20",
"@t3-oss/env-nextjs": "^0.10.1",
"@tiptap/extension-bubble-menu": "^2.6.6",
"@tiptap/extension-color": "^2.7.1",
"@tiptap/extension-document": "^2.4.0",
"@tiptap/extension-font-family": "^2.6.6",
"@tiptap/extension-highlight": "^2.6.6",
"@tiptap/extension-strike": "^2.6.6",
"@tiptap/extension-subscript": "^2.6.6",
"@tiptap/extension-superscript": "^2.6.6",
"@tiptap/extension-text": "^2.4.0",
"@tiptap/extension-text-align": "^2.7.1",
"@tiptap/extension-text-style": "^2.6.6",
"@tiptap/extension-underline": "^2.6.6",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"arctic": "^1.9.1",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"dompurify": "^3.1.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"esbuild-register": "^3.5.0",
"framer-motion": "^11.5.4",
"jiti": "^1.21.6",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"lucia": "^3.2.0",
"lucide-react": "^0.399.0",
"next": "14.2.4",
"next-themes": "^0.3.0",
"openai": "^4.56.0",
"playwright": "^1.45.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-email": "^2.1.5",
"react-hook-form": "^7.52.0",
"react-wrap-balancer": "^1.1.1",
"resend": "^3.4.0",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"unique-names-generator": "^4.7.1",
"use-debounce": "^10.0.2",
"uuid": "^10.0.0",
"vaul": "^0.9.1",
"zod": "^3.23.8",
"zsa": "^0.5.0",
"zsa-react": "^0.2.1",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/dompurify": "^3.0.5",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"drizzle-kit": "^0.22.8",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"tsc-files": "^1.1.4",
"typescript": "^5.5.2",
"vitest": "^2.0.3"
}
}