-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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": "interactive-whiteboard",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node server.js",
"start": "concurrently \"npm run dev\" \"npm run server\"",
"build": "tsc -b && vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext ts,tsx",
"preview": "vite preview"
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"multer": "^2.0.2",
"openai": "^6.16.0",
"peerjs": "^1.5.5",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"uuid": "^10.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}