Upload 5 files
Browse files- .DS_Store +0 -0
- .gitignore +6 -0
- get-pip.py +0 -0
- package-lock.json +0 -0
- package.json +58 -0
.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.gitignore
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/models
|
2 |
+
investment_model.pkl
|
3 |
+
*.h5
|
4 |
+
*..h5
|
5 |
+
/models/*.h5
|
6 |
+
/models/*..h5
|
get-pip.py
ADDED
The diff for this file is too large to render.
See raw diff
|
|
package-lock.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
package.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "client",
|
3 |
+
"version": "0.1.0",
|
4 |
+
"private": true,
|
5 |
+
"dependencies": {
|
6 |
+
"@emotion/react": "^11.11.4",
|
7 |
+
"@emotion/styled": "^11.11.5",
|
8 |
+
"@mui/icons-material": "^5.15.20",
|
9 |
+
"@mui/material": "^5.15.20",
|
10 |
+
"@mui/styles": "^5.15.20",
|
11 |
+
"@react-oauth/google": "^0.12.1",
|
12 |
+
"@reduxjs/toolkit": "^2.2.5",
|
13 |
+
"@testing-library/jest-dom": "^5.17.0",
|
14 |
+
"@testing-library/react": "^13.4.0",
|
15 |
+
"@testing-library/user-event": "^13.5.0",
|
16 |
+
"axios": "^1.7.2",
|
17 |
+
"bootstrap": "^5.3.3",
|
18 |
+
"plotly.js": "^2.33.0",
|
19 |
+
"react": "^18.3.1",
|
20 |
+
"react-bootstrap": "^2.10.2",
|
21 |
+
"react-cool-form": "^0.4.1",
|
22 |
+
"react-copy-to-clipboard": "^5.1.0",
|
23 |
+
"react-dom": "^18.3.1",
|
24 |
+
"react-open-doodles": "^1.0.5",
|
25 |
+
"react-plotly.js": "^2.6.0",
|
26 |
+
"react-redux": "^9.1.2",
|
27 |
+
"react-router-dom": "^6.23.1",
|
28 |
+
"react-scripts": "5.0.1",
|
29 |
+
"redux-persist": "^6.0.0",
|
30 |
+
"web-vitals": "^2.1.4",
|
31 |
+
"yahoo-finance-api": "^0.2.1",
|
32 |
+
"yfinance": "^0.0.6"
|
33 |
+
},
|
34 |
+
"scripts": {
|
35 |
+
"start": "react-scripts start",
|
36 |
+
"build": "react-scripts build",
|
37 |
+
"test": "react-scripts test",
|
38 |
+
"eject": "react-scripts eject"
|
39 |
+
},
|
40 |
+
"eslintConfig": {
|
41 |
+
"extends": [
|
42 |
+
"react-app",
|
43 |
+
"react-app/jest"
|
44 |
+
]
|
45 |
+
},
|
46 |
+
"browserslist": {
|
47 |
+
"production": [
|
48 |
+
">0.2%",
|
49 |
+
"not dead",
|
50 |
+
"not op_mini all"
|
51 |
+
],
|
52 |
+
"development": [
|
53 |
+
"last 1 chrome version",
|
54 |
+
"last 1 firefox version",
|
55 |
+
"last 1 safari version"
|
56 |
+
]
|
57 |
+
}
|
58 |
+
}
|