-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 937 Bytes
/
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
{
"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": {
"@monaco-editor/react": "^4.6.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"monaco-editor": "^0.52.2",
"next": "^15.1.2",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0-rc2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/express": "^5.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}