-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "mpunks-miner-controller",
"version": "1.0.0",
"description": "",
"main": "bin/index.js",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mineablepunks/mpunks-miner.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mineablepunks/mpunks-miner/issues"
},
"homepage": "https://github.com/mineablepunks/mpunks-miner#readme",
"dependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"axios": "^0.23.0",
"dotenv": "^10.0.0",
"ethers": "^5.4.6",
"express": "^4.17.1",
"memoizee": "^0.4.15",
"ts-node": "^10.2.1",
"web3": "^1.5.2",
"web3-providers-http": "^1.5.2"
},
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/express": "^4.17.13",
"@types/memoizee": "^0.4.6",
"@types/node": "^16.7.10",
"chai": "^4.3.4",
"mocha": "^9.1.2",
"prettier": "^2.3.2",
"ts-lint": "^4.5.1",
"typescript": "^4.4.2"
}
}