-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (43 loc) · 1.05 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
{
"name": "chainteanode",
"version": "2.0.0",
"description": "A Node.js library for seamless Ethereum blockchain interaction, facilitating tasks like balance checks, transactions, and more with ease.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "mocha --timeout 10000 tests/*.test.js",
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/akalnengn/chainteanode"
},
"keywords": [
"ethereum",
"blockchain",
"web3",
"ethereumjs",
"nodejs",
"cryptocurrency",
"API",
"smart contracts",
"dapps"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/akalnengn/chainteanode#readme",
"dependencies": {
"bignumber.js": "^9.1.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethereumjs-util": "^7.1.5",
"express": "^4.18.2",
"web3": "^4.5.0"
},
"devDependencies": {
"chai": "^5.1.0",
"mocha": "^10.3.0",
"nodemon": "^3.1.0"
}
}