-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 906 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
{
"name": "@enf/eos-evm-miner",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"mine": "npm run build && npm start",
"dev": "ts-node-dev ./src/index.ts",
"test": "mocha --require ts-node/register --recursive ./test/**/*.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.16.2",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@wharfkit/antelope": "^1.0.7",
"@wharfkit/resources": "^1.2.2",
"@wharfkit/session": "^1.2.8",
"@wharfkit/wallet-plugin-privatekey": "^1.1.0",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"ethereumjs-util": "^7.1.5",
"isomorphic-fetch": "^3.0.0",
"jayson": "^4.0.0",
"winston": "^3.8.2"
}
}