-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 974 Bytes
/
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
{
"name": "ethereum-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3f/ethereum-tracker.git"
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"express": "^4.17.1",
"prom-client": "^11.5.3",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.11.0",
"prettier": "^1.18.2"
},
"bugs": {
"url": "https://github.com/w3f/ethereum-tracker/issues"
},
"homepage": "https://github.com/w3f/ethereum-tracker#readme"
}