-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
144 lines (144 loc) · 3.84 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "flash-betting",
"author": "Flash Betting",
"description": "Bet Trading on the BetFair Exchange",
"version": "0.1.0",
"private": true,
"homepage": "./",
"build": {
"appId": "co.uk.flashbetting",
"compression": "maximum",
"files": [
"./build/**/*",
"./server/**/*",
"./public/electron.js",
"node_modules/**/*",
"./.env"
],
"directories": {
"buildResources": "assets"
},
"win": {
"publisherName": "Flash Betting",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"mac": {
"target": [
"zip",
"dmg"
]
}
},
"scripts": {
"start": "cross-env PORT=9090 react-scripts start",
"build": "react-scripts build",
"rebuild": "electron-rebuild -f -w node_modules/sqlite3",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "cross-env PORT=3001 nodemon server/index.js",
"browser": "cross-env concurrently \"npm run start\" \"npm run server\"",
"app": "cross-env BROWSER=none npm run build && electron .",
"electron-build": "cross-env npm run build && electron-builder"
},
"main": "public/electron.js",
"proxy": "http://localhost:3001",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"color.js": "^1.2.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"electron-context-menu": "^2.5.0",
"eventsource": "^1.1.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"socket.io": "^2.4.1",
"sortablejs": "^1.13.0",
"sqlite-async": "^1.1.2",
"ssestream": "^1.1.0"
},
"devDependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.11.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"babel-eslint": "^10.1.0",
"clsx": "^1.1.1",
"concurrently": "^4.1.2",
"cross-env": "^5.2.1",
"electron": "^4.2.12",
"electron-builder": "^22.9.1",
"electron-log": "^4.3.4",
"electron-updater": "^4.3.8",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-testing-library": "^4.7.0",
"html-react-parser": "^1.4.14",
"immutability-helper": "^3.1.1",
"jest": "^26.6.1",
"jwt-decode": "^3.1.2",
"lightweight-charts": "^3.2.0",
"moment": "^2.29.1",
"msw": "^0.30.1",
"node-env-run": "^3.0.2",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"pino-colada": "^1.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-flag-icon-css": "^1.0.25",
"react-helmet": "^5.2.1",
"react-loader-spinner": "^3.1.14",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-useinterval": "^1.0.2",
"react-uuid": "^1.0.2",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.7",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"universal-cookie": "^4.0.4"
},
"optionalDependencies": {
"win-node-env": "^0.4.0"
}
}