-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "stockmarketpredictions",
"version": "v0.2.3",
"description": "Stock Market Predictions",
"main": "scripts/start.js",
"engines": {
"node": ">=16.3.0"
},
"repository": {
"type": "git"
},
"author": {
"name": "Thomas Aumaitre",
"email": "[email protected]"
},
"browserslist": [
"defaults"
],
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"build": "node scripts/build.js",
"start": "node scripts/start.js",
"dev": "node scripts/dev.js",
"install:clean": "rm -rf node_modules/ && rm -rf dist/ && rm -rf package-lock.json && npm install"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@hot-loader/react-dom": "^16.8.3",
"@tensorflow/tfjs": "^3.13.0",
"axios": "^0.25.0",
"babel-loader": "^8.2.3",
"core-js": "^3.25.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"highcharts": "^9.3.2",
"highcharts-react-official": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"path": "^0.12.7",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"rimraf": "^3.0.2",
"webpack": "^5.61.0"
},
"devDependencies": {
"webpack-dev-middleware": "^5.2.1",
"webpack-hot-middleware": "^2.25.1"
}
}