forked from SinghAman21/silentparcel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.74 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.74 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rm -rf .next && rm -f tsconfig.tsbuildinfo && npx prisma generate && next build ",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf .next && rm -f tsconfig.tsbuildinfo && rm -rf node_modules/.cache",
"build:clean": "npm run clean && npm run build",
"cleanup:rooms": "node scripts/cleanup-collaborative-rooms.js cleanup",
"cleanup:cursors": "node scripts/cleanup-collaborative-rooms.js cursors",
"cleanup:participants": "node scripts/cleanup-collaborative-rooms.js participants",
"stats:rooms": "node scripts/cleanup-collaborative-rooms.js stats"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@prisma/client": "^6.18.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@supabase/supabase-js": "^2.52.1",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "20.6.2",
"@types/react-dom": "18.2.7",
"adm-zip": "^0.5.16",
"appwrite": "^14.0.1",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"critters": "^0.0.25",
"dotenv": "^17.2.1",
"form-data": "^4.0.4",
"gsap": "^3.13.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.525.0",
"monaco-editor": "^0.52.2",
"motion": "^12.23.11",
"nanoid": "^5.1.5",
"next": "15.4.8",
"next-themes": "^0.4.6",
"node-appwrite": "^17.2.0",
"node-fetch": "^3.3.2",
"postcss": "8.4.30",
"rate-limiter-flexible": "^7.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "4.1.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"y-monaco": "^0.1.6",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.27"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/react": "18.2.25",
"eslint": "8.57.0",
"eslint-config-next": "15.4.4",
"prisma": "^6.18.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.9",
"encoding": "^0.1.13",
"utf-8-validate": "^6.0.5"
}
}