-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 874 Bytes
/
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
{
"name": "crypto-chat",
"version": "1.0.2",
"description": "Chatting app based on ethereum micropayments",
"main": "app.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ethereum-tx-decoder": "^3.0.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-tx": "^2.1.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"node-postgres": "^0.6.2",
"pg": "^8.5.1",
"socket.io": "^3.1.0",
"sodium": "^3.0.2",
"web3": "^1.3.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}