-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "mevblocker-dune",
"version": "1.0.0",
"description": "Service implementing the PBS builder API to forward bundles into Dune",
"author": "CoW Protocol",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1360.0",
"ethers": "^5.7.0",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"fp-ts": "^2.13.1",
"io-ts": "^2.2.20",
"prom-client": "^14.2.0",
"tslog": "^4.8.2"
},
"scripts": {
"build": "tsc --project ./",
"start:dev": "nodemon src/server.ts",
"start:prod": "node dist/server.js",
"test": "jest",
"lint": "eslint --ext .ts . && prettier --check .",
"fmt": "eslint --fix --ext .ts . && prettier --write ."
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}