-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "oval-node",
"version": "0.0.1",
"main": "index.js",
"author": "",
"dependencies": {
"@flashbots/mev-share-client": "^0.7.12",
"@google-cloud/kms": "^4.5.0",
"@google-cloud/storage": "^7.11.2",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.4",
"@types/express": "^4.17.20",
"@types/morgan": "^1.9.7",
"@types/uuid": "^9.0.8",
"@uma/logger": "^1.1.0",
"axios": "^1.5.1",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"ethers": "^6.8.0",
"express": "^4.18.2",
"flashbots-ethers-v6-provider-bundle": "^0.6.1",
"json-rpc-2.0": "^1.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/bluebird": "^3.5.42",
"@types/chai": "^4.3.16",
"@types/eventsource": "^1.1.11",
"@types/mocha": "^10.0.7",
"@types/node": "^18.14.4",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"chai": "^4.4.1",
"dotenv": "^16.3.1",
"mocha": "^10.6.0",
"sinon": "^18.0.0",
"typechain": "^8.3.2"
},
"scripts": {
"dev": "nodemon",
"build": "yarn generate-contract-types && tsc",
"test": "yarn generate-contract-types && mocha",
"start": "node ./out/index.js",
"lint": "prettier './**/*.ts' --write",
"generate-contract-types": "rm -rf src/contract-types && mkdir -p src/contract-types && typechain --target ethers-v6 --out-dir src/contract-types 'src/abi/*.json'"
}
}