-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.84 KB
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
{
"name": "bitcracker",
"version": "1.0.0",
"description": "AI-based bitcoin price prediction",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c && cp ./web/client/src/*.html public/",
"start": "now dev",
"train": "node ml/train.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.10.2",
"@tensorflow/tfjs-node": "^1.7.1",
"@tensorflow/tfjs-node-gpu": "^1.7.1",
"apexcharts": "^3.17.1",
"bootstrap": "^4.3.1",
"chart.js": "^2.9.3",
"crc-32": "^1.2.0",
"csv-parser": "^2.3.2",
"csv-writer": "^1.6.0",
"currency-pattern-detector": "^0.1.3",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.0",
"human-readable-numbers": "^0.9.5",
"ichimoku": "^1.0.4",
"jquery": "^3.4.1",
"kraken-api": "^1.0.0",
"lodash": "^4.17.15",
"mkdirp": "^1.0.4",
"moment": "^2.24.0",
"object-hash": "^2.0.3",
"prompts": "^2.3.2",
"sqlite3": "^5.0.0",
"sweetalert2": "^9.7.0",
"tulind": "^0.8.18",
"vue": "^2.6.11",
"vue-apexcharts": "^1.5.2",
"vue-chartjs": "^3.5.0",
"vue-router": "^3.1.6",
"ws": "^7.3.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"axios": "^0.19.2",
"colors": "^1.4.0",
"copyfiles": "^2.2.0",
"now": "^16.7.3",
"rollup": "^1.22.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "^5.0.1",
"vue-template-compiler": "^2.6.10"
}
}