-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
55
56
57
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"start-kernel": "bash scripts/start-kernel.sh",
"dev-all": "concurrently \"npm run dev\" \"npm run start-kernel\""
},
"dependencies": {
"@ai-sdk/openai": "^0.0.66",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-python": "^6.1.6",
"@heroicons/react": "^2.1.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@uiw/codemirror-theme-dracula": "^4.23.7",
"@uiw/codemirror-theme-vscode": "^4.23.5",
"@uiw/react-codemirror": "^4.23.7",
"ai": "^3.4.9",
"ansi-to-html": "^0.7.2",
"cors": "^2.8.5",
"express": "^4.21.2",
"heroicons": "^2.1.5",
"next": "14.2.15",
"node-fetch": "^2.7.0",
"python-shell": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tsx": "^4.19.2",
"uuid": "^10.0.0",
"websocket": "^1.0.35",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"concurrently": "^9.1.2",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}