-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
58 lines (58 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
55
56
57
58
{
"name": "@bobanetwork/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": "ts-node ./src/exec/run.ts",
"build": "tsc -p ./tsconfig.json",
"clean": "rimraf dist/ ./tsconfig.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",
"test:coverage": "nyc hardhat test && nyc merge .nyc_output coverage.json"
},
"keywords": [
"optimism",
"ethereum",
"gas price oracle"
],
"license": "MIT",
"devDependencies": {
"@ethersproject/providers": "^5.5.0",
"@nomicfoundation/ethereumjs-evm": "1.0.0",
"@bobanetwork/contracts": "0.0.2",
"@bobanetwork/core_contracts": "0.5.12",
"@eth-optimism/core-utils": "0.8.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/mocha": "^8.2.2",
"chai": "^4.3.6",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.5.4",
"hardhat": "^2.12.5",
"mocha": "^8.3.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"node-fetch": "^2.6.1"
},
"dependencies": {
"@ethersproject/providers": "^5.5.0",
"@nomicfoundation/ethereumjs-evm": "1.0.0",
"@eth-optimism/common-ts": "0.2.2",
"bcfg": "^0.2.1",
"dotenv": "^8.2.0",
"ethers": "^5.5.4",
"lodash": "^4.17.21"
}
}