-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 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
{
"name": "collaborative-editor",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "ts-node --project tsconfig.server.json server.ts",
"build": "next build",
"start": "NODE_ENV=production ts-node --project tsconfig.server.json server.ts"
},
"dependencies": {
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/language": "^6.10.8",
"@codemirror/legacy-modes": "^6.4.2",
"@uiw/codemirror-theme-vscode": "^4.23.8",
"@uiw/react-codemirror": "^4.23.7",
"clsx": "^2.1.1",
"codemirror-lang-elixir": "^4.0.0",
"next": "15.1.2",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-daisyui": "^5.0.5",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-use": "^17.6.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.6.0",
"ts-node": "^10.9.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"daisyui": "^4.12.23",
"eslint": "^9",
"eslint-config-next": "15.1.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}