-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"name": "cprcc",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.10",
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "next dev",
"dev:backend": "convex dev",
"predev": "convex dev --until-success && convex dev --once --run-sh \"node setup.mjs --once\"",
"build": "next build",
"start": "next start",
"lint": "ultracite check"
},
"dependencies": {
"@convex-dev/auth": "^0.0.91",
"@convex-dev/resend": "^0.2.3",
"@dnd-kit/core": "^6.3.1",
"@tiptap/extension-link": "^3.22.3",
"@tiptap/extension-placeholder": "^3.22.3",
"@tiptap/extension-text-align": "^3.22.3",
"@tiptap/extension-underline": "^3.22.3",
"@tiptap/react": "^3.22.3",
"@tiptap/starter-kit": "^3.22.3",
"convex": "^1.32.0",
"heic2any": "^0.0.4",
"marked": "^18.0.0",
"next": "16.1.6",
"posthog-js": "^1.356.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"sonner": "^2.0.7",
"turndown": "^7.2.4"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/turndown": "^5.0.6",
"dotenv": "^17.3.1",
"lefthook": "^2.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"ultracite": "7.2.4"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
},
"trustedDependencies": [
"unrs-resolver"
]
}