forked from share/sharedb
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 840 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 840 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
{
"name": "sharedb-example-counter",
"version": "0.0.1",
"description": "A simple client/server app using ShareDB and WebSockets",
"main": "server.js",
"scripts": {
"build": "mkdir -p static/dist/ && ./node_modules/.bin/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": {
"express": "^4.14.0",
"@teamwork/sharedb": "^1.1.4",
"@teamwork/websocket-json-stream": "^1.0.0",
"ws": "^1.1.0"
},
"devDependencies": {
"browserify": "^13.0.1"
}
}