-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "codenow2",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:ws": "node --loader ts-node/esm app/lib/websocketServer.ts",
"lint": "next lint"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@next/env": "^15.1.3",
"@types/websocket": "^1.0.10",
"express": "^4.21.0",
"framer-motion": "^11.11.2",
"highlight.js": "^11.10.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.447.0",
"lz-string": "^1.5.0",
"next": "14.2.14",
"peerjs": "^1.5.4",
"prismjs": "^1.29.0",
"react": "^18",
"react-codemirror2": "^8.0.0",
"react-dom": "^18",
"react-syntax-highlighter": "^15.6.1",
"simple-peer": "^9.11.1",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/highlight.js": "^10.1.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.16.10",
"@types/prismjs": "^1.26.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/socket.io-client": "^3.0.0",
"@types/ws": "^8.5.12",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"postcss": "^8",
"nanoid":"5.0.9",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}