forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "@eth-optimism/replica-healthcheck",
"version": "0.2.4",
"private": true,
"main": "dist/index",
"files": [
"dist/index"
],
"types": "dist/index",
"author": "Optimism PBC",
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist ./tsconfig.build.tsbuildinfo",
"lint": "yarn run lint:fix && yarn run lint:check",
"lint:fix": "yarn lint:check --fix",
"lint:check": "eslint .",
"build": "tsc -p tsconfig.build.json",
"pre-commit": "lint-staged",
"test": "ts-mocha test/*.spec.ts",
"start": "ts-node ./src/exec/run-healthcheck-server.ts"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.2",
"@types/node-cron": "^2.0.4",
"supertest": "^6.1.4",
"ts-mocha": "^8.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@eth-optimism/common-ts": "0.1.6",
"@eth-optimism/core-utils": "^0.6.1",
"ethers": "^5.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-prom-bundle": "^6.3.6",
"node-cron": "^3.0.0",
"prom-client": "^13.1.0"
}
}