-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 844 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
{
"name": "chz-transaction-monitor",
"version": "1.0.0",
"description": "Node.js app for monitoring transactions that interract with CHZ smart contract on ETH network",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node index.js"
},
"author": "Giorgi Abuladze (https://abula.dev)",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"mocha": "^9.1.3"
},
"dependencies": {
"decimal.js": "^10.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"mongodb": "^4.2.2",
"swagger-ui-express": "^4.3.0",
"web3": "^1.6.1"
}
}