Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"presets": ["es2015", "stage-0", "react"],
"plugins": [
"transform-flow-strip-types",
"transform-object-rest-spread"
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ wallet2
sample-keystore
stats.json*
keystore
keystore*
672 changes: 566 additions & 106 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"description": "Command-line tool written in JavaScript to interact with the Ethereum Alarm Clock",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src/Dashboard/index.jsx -d ./",
"cleanup": "node tools/cleanup.js",
"dashboard": "node src/Dashboard/index.js",
"demo": "npm run build && node bin/eac timenode --wallet keystore5 --password chronologic --dashboard",
"lint": "./node_modules/.bin/eslint src/**/*",
"lint:fix": "./node_modules/.bin/eslint src/**/* --fix",
"test": "mocha"
Expand Down Expand Up @@ -32,15 +35,16 @@
},
"homepage": "https://github.com/ethereum-alarm-clock/eac.js-cli#readme",
"dependencies": {
"@ethereum-alarm-clock/timenode-core": "5.1.2",
"@ethereum-alarm-clock/timenode-core": "5.1.3",
"bignumber.js": "5.0.0",
"blessed": "0.1.81",
"bluebird": "3.5.1",
"clear": "0.1.0",
"cli-table2": "0.2.0",
"commander": "2.17.1",
"console.table": "0.10.0",
"dotenv": "5.0.1",
"eac.js-lib": "2.4.1",
"eac.js-lib": "2.4.2",
"ethereumjs-util": "5.2.0",
"keen-tracking": "4.0.2",
"lokijs": "1.5.3",
Expand All @@ -54,6 +58,12 @@
"node": ">=8"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "4.1.2",
"eslint": "5.4.0",
"eslint-config-airbnb-base": "13.1.0",
Expand Down
Loading