-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.7 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
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
{
"name": "collabpad",
"version": "0.1.0",
"private": true,
"description": "A modern document editor built with Next.js 14, TypeScript, and tRPC",
"scripts": {
"dev": "next dev",
"dev:quiet": "npm_config_loglevel=silent next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"ws:server": "node scripts/websocket-server.js"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@prisma/client": "^6.12.0",
"@tanstack/react-query": "^4.40.1",
"@tiptap/core": "^3.0.7",
"@tiptap/extension-code-block-lowlight": "^3.0.7",
"@tiptap/extension-collaboration": "2.26.1",
"@tiptap/extension-collaboration-cursor": "2.26.1",
"@tiptap/extension-link": "^3.0.7",
"@tiptap/extension-placeholder": "^3.0.7",
"@tiptap/extension-typography": "^3.0.7",
"@tiptap/react": "2.26.1",
"@tiptap/starter-kit": "^3.0.7",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"highlight.js": "^11.11.1",
"lowlight": "^3.3.0",
"next": "^15.1.0",
"next-auth": "^4.24.5",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.40.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"superjson": "^2.2.1",
"tinycolor2": "^1.6.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"ws": "^8.18.3",
"y-prosemirror": "1.3.7",
"y-protocols": "^1.0.6",
"y-websocket": "1.4.5",
"y-websocket-server": "^1.0.2",
"yjs": "13.6.27",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.10.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/tinycolor2": "^1.4.6",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"jsdom": "^26.1.0",
"node-fetch": "^2.7.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prisma": "^6.12.0",
"tailwindcss": "^3.3.6",
"tsx": "^4.7.0",
"typescript": "^5.4.5",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18.0.0"
}
}