-
Notifications
You must be signed in to change notification settings - Fork 459
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 930 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 930 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
{
"name": "sharedb-example-rich-text",
"version": "1.0.0",
"description": "A simple rich-text editor example based on Quill and ShareDB",
"main": "server.js",
"scripts": {
"build": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Nate Smith",
"contributors": [
"Avital Oliver <avital@aoliver.org> (https://aoliver.org/)"
],
"license": "MIT",
"dependencies": {
"@teamwork/websocket-json-stream": "^2.0.0",
"bson-objectid": "^2.0.4",
"express": "^4.18.2",
"quill": "^2.0.2",
"quill-cursors": "^4.0.2",
"reconnecting-websocket": "^4.4.0",
"rich-text": "^4.1.0",
"sharedb": "^3.3.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"babel-loader": "^9.2.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}