-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.49 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
{
"name": "oversee",
"version": "0.0.1",
"description": "multi exchange/wallet management and analysis tools",
"author": "Daniel Heymann",
"homepage": "https://github.com/KingKone/oversee",
"repository": {
"type": "git",
"url": "https://github.com/KingKone/oversee.git"
},
"license": "MIT",
"main": "main.js",
"scripts": {
"prod": "webpack --config webpack.build.config.js && electron --noDevServer .",
"dev": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"build": "webpack --config webpack.build.config.js",
"package": "webpack --config webpack.build.config.js",
"postpackage": "electron-packager ./ --out=./builds"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.0",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.0.11",
"css-loader": "^0.28.1",
"electron": "^1.8.0",
"electron-packager": "^8.7.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"mysql": "^2.14.1",
"node-coinmarketcap": "^0.1.4",
"node.bittrex.api": "^0.5.3",
"react-dnd": "^2.5.1",
"react-dnd-html5-backend": "^2.5.1",
"react-icons": "^2.2.5",
"react-json-tree": "^0.10.9",
"react-table": "^6.5.3",
"recharts": "^1.0.0-alpha.4"
}
}