-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
91 lines (91 loc) · 2.61 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
{
"name": "foxfolio",
"productname": "Foxfolio",
"version": "0.0.12",
"description": "Cryptocurrency portfolio management application which automatically retrieves balances and trades using exchange APIs",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"main": "dist-electron/main/index.js",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder",
"preview": "vite preview"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"ccxt": "4.0.33",
"chart.js": "^2.7.2",
"classnames": "^2.2.5",
"csvtojson": "^1.1.9",
"dayjs": "^1.7.7",
"devtron": "^1.4.0",
"downshift": "^1.26.1",
"electron-debug": "^1.2.0",
"electron-log": "^2.2.14",
"electron-updater": "^6.1.1",
"font-awesome": "^4.7.0",
"format-number": "^3.0.0",
"formsy-react": "^1.1.3",
"history": "^4.6.3",
"immer": "^1.7.2",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"raven-js": "^3.21.0",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"recharts": "^1.5.0",
"redux": "^4.0.0",
"redux-form": "^7.4.2",
"redux-form-material-ui": "^5.0.0-beta.3",
"redux-observable": "^1.1.0",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rxjs": "^6.3.3",
"shortid": "^2.2.8",
"socks-proxy-agent": "^8.0.1",
"source-map-support": "^0.4.15",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@types/chart.js": "^2.7.26",
"@types/classnames": "^2.2.3",
"@types/history": "^4.7.2",
"@types/jest": "^22.2.0",
"@types/lodash": "^4.14.104",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-hot-loader": "^4.1.0",
"@types/react-redux": "^7.0.9",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.3",
"@types/react-router-redux": "^5.0.18",
"@types/recharts": "^1.1.16",
"@types/redux-form": "^7.5.4",
"@types/redux-logger": "^3.0.7",
"@types/shortid": "^0.0.29",
"@vitejs/plugin-react": "^3.1.0",
"electron": "^23.2.0",
"electron-builder": "^23.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2",
"vite": "^4.1.4",
"vite-plugin-electron": "^0.11.2",
"vite-plugin-electron-renderer": "^0.14.1"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
}
}