-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "blockchat",
"version": "1.0.1",
"description": "A simple blockchain chat app built with Javascript, Lotion, and Tendermint",
"author": "Mark Price",
"license": "MIT",
"main": "chat-node.js",
"keywords": [
"lotionjs",
"tendermint",
"blockchain",
"proof of stake"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devslopes/blockchat"
},
"engines": {
"node": ">=8.2"
},
"scripts": {
"start": "node chat-node.js"
},
"bin": {
"blockchat": "bin/chat-client.js"
},
"dependencies": {
"axios": "^0.17.1",
"crypto": "^1.0.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"get-port": "^3.2.0",
"left-pad": "^1.2.0",
"lotion": "^0.1.19",
"lotion-connect": "^0.1.5",
"minimist": "^1.2.0",
"readline": "^1.3.0",
"secp256k1": "^3.5.2",
"shea": "0.0.15",
"socket.io": "^2.1.1",
"swearjar": "^0.2.0",
"tenderkeys.js": "0.0.6",
"tendermint-crypto": "0.0.1",
"websocket": "^1.0.28"
}
}