-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
51
{
"name": "cryptools",
"version": "0.1.0",
"description": "Tools to support cryptocurrencies asset management",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"build": "webpack",
"build-prod": "webpack -p"
},
"keywords": [
"cryptocurrencies",
"bitcoin",
"arbitrage"
],
"author": "A. Dvorson",
"license": "ISC",
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.2.0",
"@material-ui/icons": "^4.2.1",
"bignumber.js": "^9.0.0",
"bluebird": "^3.5.5",
"ccxt": "^1.18.901",
"ethereumjs-abi": "^0.6.7",
"ethereumjs-util": "^6.1.0",
"express": "^4.17.1",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"web3": "^1.0.0-beta.55",
"ws": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.2",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
}
}