This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
127 lines (127 loc) · 3.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "binance-profit-from-export",
"version": "0.0.1",
"description": "Process the XLSX file from Binance's Trade History export and figure out profits",
"main": "index.js",
"private": true,
"scripts": {
"dev-old": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"dev": "node index.js",
"prod": "NODE_ENV=production npm run build && NODE_ENV=production node index.js",
"start": "npm run prod",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src test/unit test/e2e/specs",
"build": "node build/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorbutler/binance-profit-calculator.git"
},
"keywords": [
"binance",
"profit",
"calculator",
"bags",
"matching"
],
"author": "Victor Butler",
"license": "MIT",
"bugs": {
"url": "https://github.com/victorbutler/binance-profit-calculator/issues"
},
"homepage": "https://github.com/victorbutler/binance-profit-calculator#readme",
"dependencies": {
"accounting": "^0.4.1",
"axios": "^0.18.0",
"big.js": "^5.0.3",
"binance": "^1.3.3",
"bootstrap-vue": "^2.0.0-rc.6",
"data-store": "^1.0.0",
"multer": "^1.3.0",
"node-coinmarketcap": "^0.2.0",
"properties": "^1.2.1",
"request": "^2.85.0",
"socket.io": "^2.1.0",
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"xlsx": "^0.12.7"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.3.2",
"chromedriver": "^2.37.0",
"copy-webpack-plugin": "^4.5.1",
"cross-spawn": "^6.0.5",
"css-loader": "^0.28.11",
"del": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"jest-serializer-vue": "^1.0.0",
"jquery": "^3.3.1",
"nightwatch": "^0.9.20",
"node-notifier": "^5.2.1",
"node-sass": "^4.8.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^2.0.0",
"popper.js": "^1.14.3",
"portfinder": "^1.0.13",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"postcss-url": "^7.3.2",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"selenium-server": "^3.11.0",
"semver": "^5.5.0",
"shelljs": "^0.8.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"vue-jest": "^2.4.1",
"vue-loader": "^14.2.2",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"vue-websocket": "^0.2.2",
"vuex": "^3.0.1",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-middleware": "^2.0.5",
"webpack-dev-server": "^2.9.1",
"webpack-hot-middleware": "^2.22.0",
"webpack-merge": "^4.1.2"
}
}