-
Notifications
You must be signed in to change notification settings - Fork 453
/
package.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 [ @babel/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 <tom@percolatestudio.com> (https://tom.thesnail.org/)",
"contributors": [
"Tom Coleman <tom@percolatestudio.com> (https://tom.thesnail.org/)",
"Avital Oliver <avital@aoliver.org> (https://aoliver.org/)"
],
"license": "MIT",
"dependencies": {
"@teamwork/websocket-json-stream": "^2.0.0",
"classnames": "^2.3.2",
"express": "^4.18.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reconnecting-websocket": "^4.4.0",
"sharedb": "^3.3.0",
"sharedb-mingo-memory": "^2.1.2",
"underscore": "^1.13.6",
"ws": "^8.12.1"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"babelify": "^10.0.0",
"browserify": "^17.0.0"
}
}