-
Notifications
You must be signed in to change notification settings - Fork 459
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 826 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 826 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
{
"name": "sharedb-example-counter",
"version": "1.0.0",
"description": "A simple client/server app using ShareDB and WebSockets",
"main": "server.js",
"scripts": {
"build": "browserify client.js -o static/dist/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Dmitry Kharitonov <geakstr@me.com> (https://dkharitonov.me/)",
"contributors": [
"Dmitry Kharitonov <geakstr@me.com> (https://dkharitonov.me/)",
"Avital Oliver <avital@aoliver.org> (https://aoliver.org/)"
],
"license": "MIT",
"dependencies": {
"@teamwork/websocket-json-stream": "^2.0.0",
"express": "^4.18.2",
"reconnecting-websocket": "^4.4.0",
"sharedb": "^3.3.0",
"ws": "^8.12.1"
},
"devDependencies": {
"browserify": "^17.0.0"
}
}