forked from bobanetwork/boba_legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@boba/gas-price-oracle",
"version": "0.1.0",
"private": true,
"description": "Gas Price Oracle service",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/index",
"test/**/*.ts"
],
"scripts": {
"start:service": "node ./exec/run-gas-price-oracle.js",
"start": "yarn start:service",
"build": "tsc -p ./tsconfig.build.json",
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,exec,test}/**/*.ts\"",
"lint:check": "tslint --format stylish --project .",
"test": "hardhat test --show-stack-traces"
},
"keywords": [
"optimism",
"ethereum",
"gas price oracle"
],
"license": "MIT",
"devDependencies": {
"@boba/contracts": "0.0.1",
"@eth-optimism/contracts": "^0.5.11",
"@eth-optimism/core-utils": "0.8.1",
"@ethersproject/providers": "^5.0.24",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@types/mocha": "^8.2.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"directory-tree": "^2.2.7",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"hardhat": "^2.9.2",
"mocha": "^8.3.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@eth-optimism/common-ts": "^0.1.0",
"bcfg": "^0.1.6",
"chalk": "^4.1.1",
"dotenv": "^8.2.0",
"ethers": "^5.1.0",
"ganache-core": "^2.13.2",
"glob": "^7.1.6",
"google-spreadsheet": "^3.1.15",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.18",
"patch-package": "^6.4.7",
"rlp": "^2.2.6",
"node-fetch": "^2.6.1"
}
}