-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 891 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 891 Bytes
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-blockly",
"version": "0.1.0",
"private": true,
"description": "A collaborative Blockly editor using Next.js and Firebase",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@types/lodash": "^4.17.16",
"@types/uuid": "^10.0.0",
"blockly": "^10.4.3",
"firebase": "^11.4.0",
"lodash": "^4.17.21",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"uuid": "^11.1.0",
"y-protocols": "^1.0.6",
"y-webrtc": "^10.3.0",
"y-websocket": "^2.1.0",
"yjs": "^13.6.24"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"typescript": "^5.0.0"
}
}