-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "100btc-challenge",
"version": "0.1.0",
"homepage": "https://github.com/wouterds/100BTC-challenge",
"author": "Wouter De Schuyter <wouter.de.schuyter@gmail.com> (https://wouterdeschuyter.be)",
"scripts": {
"start": "./node_modules/.bin/babel-node .",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint --fix ."
},
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.1",
"cli-table3": "^0.5.1",
"crypto": "^1.0.1",
"date-fns": "^1.29.0",
"dotenv": "^6.1.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.83.0",
"prettier": "^1.14.3"
}
}