forked from share/sharedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 KB
/
package.json
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
{
"name": "sharedb-example-leaderboard",
"version": "1.0.0",
"description": "React Leaderboard backed by ShareDB",
"main": "server.js",
"scripts": {
"build": "browserify -t [ babelify --presets [ react ] ] client/index.jsx -o static/dist/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/index.js"
},
"author": "Tom Coleman <[email protected]> (https://tom.thesnail.org/)",
"contributors": [
"Tom Coleman <[email protected]> (https://tom.thesnail.org/)",
"Avital Oliver <[email protected]> (https://aoliver.org/)"
],
"license": "MIT",
"dependencies": {
"@teamwork/websocket-json-stream": "^2.0.0",
"classnames": "^2.2.5",
"express": "^4.17.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"reconnecting-websocket": "^4.2.0",
"sharedb": "^1.0.0-beta",
"sharedb-mingo-memory": "^1.0.0-beta",
"underscore": "^1.8.3",
"ws": "^7.2.0"
},
"devDependencies": {
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^16.5.0"
}
}