-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 2.06 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
{
"name": "stock-miner",
"version": "0.0.0",
"description": "Stock Miner is a predictive analysis and stock market trading application.",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run frontend:prod",
"clean": "npm run clean:default",
"clean:default": "rm -rf dist 2>/dev/null; rm -rf build 2>/dev/null; ",
"backend:node-server": "node src/backend/sm_server.js &",
"backend:flask-server": "python3 src/backend/python/sm_python_server.py",
"dev": "npm run backend:node-server && parcel serve src/index.html",
"frontend:dev": "parcel build src/index.html --public-url . -d gui",
"frontend:prod": "parcel build src/index.html --public-url . --no-source-maps -d gui",
"init": "npm install && ./src/backend/scripts/install_deps.sh",
"start": "npm run frontend:dev",
"rebuild:db": "node src/backend/scripts/rebuild_db.js"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"crypto",
"markets",
"analysis",
"trading"
],
"author": "Wil Neeley & Justin Walker",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Xaxis/stock-miner/issues"
},
"homepage": "https://github.com/Xaxis/stock-miner.git/readme",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@types/react": "^17.0.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
"fontsource-roboto": "^4.0.0",
"lodash": "^4.17.21",
"material-design-icons": "^3.0.1",
"mui-datatables": "^3.7.6",
"node-uuid": "^1.4.8",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"sqlite3": "^5.0.2",
"styled-components": "^4.4.1",
"websocket": "^1.0.33"
},
"devDependencies": {
"parcel-bundler": "1.12.4",
"request": "^2.88.2",
"run-script-os": "1.0.7",
"sass": "1.25.0",
"typescript": "^3.7.5"
}
}