forked from powerpool-finance/powerpool-agent-v2-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "powerpool-agent-v2-node",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node app/App.ts",
"test": " NODE_OPTIONS=\"--loader ts-node/esm\" mocha tests/testRawJobParser.test.ts"
},
"author": "PowerPool",
"license": "ISC",
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@flashbots/ethers-provider-bundle": "^0.6.1",
"@types/yamljs": "^0.2.31",
"ethers": "^5.6.9",
"web3": "^1.9.0",
"yamljs": "^0.3.0"
},
"type": "module",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.3.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}