-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.66 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "powerpool-agent-v2-node",
"version": "0.5.8",
"description": "PowerPool Agent V2 Keeper Node",
"main": "app/Run.ts",
"scripts": {
"build": "tsc && yarn write-version-data",
"build:release": "yarn clean && yarn run build",
"start": "tsx app/Cli.ts",
"dev": "NODE_ENV=dev ts-node app/Cli.ts",
"lint": "eslint --ext .ts app/ tests/",
"lint:fix": "eslint --fix --ext .ts app/ tests/",
"test": "NODE_ENV=test LOG_LEVEL=error mocha tests/**/*.test.ts",
"test:debug": "NODE_ENV=test LOG_LEVEL=debug mocha tests/**/*.test.ts",
"write-version-data": "DIR=. tsx ./writeVersionData.ts"
},
"author": "PowerPool",
"license": "ISC",
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@flashbots/ethers-provider-bundle": "^0.6.1",
"@sentry/node": "^7.64.0",
"@types/yamljs": "^0.2.31",
"axios": "^1.3.6",
"elliptic": "^6.5.5",
"ethers": "5.7.2",
"fastify": "^4.19.2",
"p-iteration": "^1.1.8",
"tsx": "^4.11.0",
"winston": "^3.10.0",
"winston-daily-rotate-file": "4.5.0",
"winston-transport": "^4.5.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",
"@types/sinon": "^10.0.16",
"@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.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ethereumjs-wallet": "^1.0.2",
"mocha": "^10.0.0",
"prettier": "^2.8.8",
"sinon": "^15.2.0",
"typescript": "^5.4.5"
}
}