-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "@eth-optimism/data-transport-layer",
"version": "0.1.0",
"main": "build/index.js",
"license": "MIT",
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.ts"
],
"types": "build/index.d.ts",
"scripts": {
"clean": "rimraf ./build",
"clean:db": "rimraf ./db",
"lint": "yarn run lint:fix && yarn run lint:typescript",
"lint:typescript": "tslint --format stylish --project .",
"lint:fix": "yarn run lint:fix:typescript",
"lint:fix:typescript": "prettier --config prettier-config.json --write \"{src,exec,test}/**/*.ts\"",
"start": "ts-node ./src/services/run.ts",
"test": "hardhat --config test/config/hardhat.config.ts test",
"build": "tsc -p ."
},
"dependencies": {
"@eth-optimism/contracts": "^0.1.4",
"@eth-optimism/core-utils": "^0.1.5",
"@eth-optimism/service-base": "^0.0.1",
"@ethersproject/providers": "^5.0.21",
"@types/express": "^4.17.11",
"browser-or-node": "^1.3.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ethers": "^5.0.26",
"express": "^4.17.1",
"level": "^6.0.1",
"prettier": "^2.2.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@types/browser-or-node": "^1.3.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/cors": "^2.8.9",
"@types/mocha": "^8.2.0",
"@types/node-fetch": "^2.5.8",
"@types/rimraf": "^3.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"hardhat": "^2.0.9",
"mocha": "^8.2.1",
"node-fetch": "^2.6.1",
"rimraf": "^3.0.2",
"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.1.3"
}
}