-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.63 KB
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
{
"name": "binance-missing-pingpong-keepalive-problem",
"version": "1.0.0",
"license": "MIT",
"main": "src/electron.js",
"scripts": {
"react-start": "parcel -p 3000 index.html --out-dir build",
"react-build": "parcel build index.html --out-dir build --public-url ./",
"electron-build": "electron-builder -mwl",
"clean-build": "rm -rf build/ .cache dist/",
"build": "yarn clean-build && yarn react-build && yarn electron-build",
"start": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron . \"",
"test-bundle": "bundlesize"
},
"bundlesize": [
{
"path": "./build/src.*.js",
"maxSize": "250 kB"
},
{
"path": "./build/src.*.css",
"maxSize": "100 kB"
}
],
"homepage": "./",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"autoscroll-react": "^3.2.0",
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"ccxt.pro": "git+https://GITHUB_SECRET:x-oauth-basic@github.com/kroitor/ccxt.pro.git",
"connected-react-router": "^6.8.0",
"electron-google-analytics": "^0.2.2",
"electron-is-dev": "1.2.0",
"history": "^4.10.1",
"immutable": "^3.8.1 || ^4.0.0-rc.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^15.6.0 || ^16.0.0",
"react-bootstrap": "^1.0.0",
"react-country-region-selector": "^2.1.0",
"react-dom": "^16.13.1",
"react-identicons": "^1.2.4",
"react-infinite-scroller": "^1.2.4",
"react-loader-spinner": "^3.1.14",
"react-moment": "^0.9.7",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.3.0",
"reset-css": "^5.0.1",
"seamless-immutable": "^7.1.3",
"semantic-ui-css": "2.4.1",
"socket.io-client": "^2.3.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"bundlesize": "^0.18.0",
"concurrently": "^5.0.2",
"cross-env": "7.0.2",
"electron": "^8.2.3",
"electron-builder": "^22.5.1",
"electron-devtools-installer": "^3.0.0",
"parcel-bundler": "^1.12.4",
"wait-on": "4.0.2"
}
}