6dc4fc6acd
* Apply prettier fixes for UI * Integrate prettier into linting. Remove duplicate .prettierrc. * Common .eslintignore. Removed reduntant prettier check * Apply prettier on ui script * Correct linting * Duplicate plugin * Common plugin
33 lines
736 B
JSON
33 lines
736 B
JSON
{
|
|
"name": "monitor",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"lint": "eslint . --ignore-path ../.eslintignore",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bignumber.js": "^6.0.0",
|
|
"dotenv": "^5.0.1",
|
|
"express": "^4.16.3",
|
|
"node-fetch": "^2.1.2",
|
|
"web3": "1.0.0-beta.34"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.9"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "5.12.0",
|
|
"eslint-config-airbnb": "^17.1.0",
|
|
"eslint-config-prettier": "^3.1.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-node": "^7.0.1",
|
|
"eslint-plugin-prettier": "^2.6.2",
|
|
"prettier": "^1.14.3"
|
|
}
|
|
}
|